From 90501fc5e21be578e5035f9b861887b4e64cf0f1 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Fri, 14 May 2021 17:45:42 +0200 Subject: [PATCH] Re-work nginx config for static files --- nginx.conf.tmpl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nginx.conf.tmpl b/nginx.conf.tmpl index a75ab7d..12dd6f3 100644 --- a/nginx.conf.tmpl +++ b/nginx.conf.tmpl @@ -22,7 +22,10 @@ http { location /static/ { alias /opt/mailman-web-data/static; - autoindex off; + } + + location /static/favicon.ico { + alias /opt/mailman-web-data/static/postorius/img/favicon.ico; } } }