From 867b0ba972f13418c5b3eedf65180af9d2643cf3 Mon Sep 17 00:00:00 2001 From: wspooong Date: Mon, 25 Mar 2024 22:44:21 +0800 Subject: [PATCH] Add favicon.ico location in nginx.conf --- nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nginx.conf b/nginx.conf index 89e7e32..d110ffe 100644 --- a/nginx.conf +++ b/nginx.conf @@ -15,4 +15,8 @@ server { proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } + + location /favicon.ico { + root html; + } }