From fb45e31e3171a64300b3084e8173d19476017b53 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 13 Oct 2020 21:12:08 +0200 Subject: [PATCH] Fix path for css/js assets in nginx conf --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index eb3c411..f90d0fb 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -21,7 +21,7 @@ location / { client_max_body_size 16m; location ~* \.(css|js)$ { - root /home/mobilizon/live/priv/static; + root __FINALPATH__/mobilizon/priv/static; etag off; expires 1y; access_log off;