From 9ba99adeaddf7e707948b0e54195e97f14a07ade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Fri, 26 Jul 2024 17:08:01 +0200 Subject: [PATCH] Reintroduce modified /images rule --- nginx/default.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nginx/default.conf b/nginx/default.conf index ecad836..061151e 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -4,6 +4,10 @@ server { root /usr/share/nginx/html; index index.html index.htm; + location /images { + root /usr/share/nginx/html; + } + location / { try_files $uri $uri/ /index.html; }