From 38ddff2df5b99908287909b8c47fa373bfacd88e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sch=C3=A4fer?= <felix@thegcat.net> Date: Wed, 9 Sep 2020 16:17:00 +0200 Subject: [PATCH] Correct nginx config for static files --- files/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/nginx.conf b/files/nginx.conf index 7a66cab..fd1fc80 100644 --- a/files/nginx.conf +++ b/files/nginx.conf @@ -9,7 +9,7 @@ server { } location /static/ { - alias /srv/AKPlanning/static; + alias /srv/AKPlanning/static/; access_log off; expires 365d; add_header Cache-Control "public"; -- GitLab