From 9d20da6a16fe88069bb038e1fd4c96a601edd765 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Sun, 29 Jun 2025 18:51:24 +0300 Subject: [PATCH] use correct absolute path for static files in ngx config --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 06a00aa..0563859 100644 --- a/nginx.conf +++ b/nginx.conf @@ -8,7 +8,7 @@ http { server_name localhost; location /static/ { - alias /data/static/; + alias /app/data/static/; } location / {