From 5faa0f5548cea63de03c1415f0f21a6b9efd1793 Mon Sep 17 00:00:00 2001 From: nutra-bot Date: Fri, 21 Apr 2023 01:28:23 +0000 Subject: [PATCH] add favicon to api server --- etc/nginx/conf.d/default.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/etc/nginx/conf.d/default.conf b/etc/nginx/conf.d/default.conf index aaca5ce..bfab9c9 100644 --- a/etc/nginx/conf.d/default.conf +++ b/etc/nginx/conf.d/default.conf @@ -26,6 +26,11 @@ server { proxy_set_header connection "upgrade"; proxy_set_header upgrade $http_upgrade; } + + # default favicon + location = /favicon.ico { + alias /var/www/favicon.gif; + } } # UI, blog, favicon, default server -- 2.52.0