Reintroduce modified /images rule

This commit is contained in:
Maciej Pędzich 2024-07-26 17:08:01 +02:00
parent baa8000522
commit 9ba99adead
Signed by: maciejpedzich
GPG Key ID: CE4A303D84882F0D

View File

@ -4,6 +4,10 @@ server {
root /usr/share/nginx/html; root /usr/share/nginx/html;
index index.html index.htm; index index.html index.htm;
location /images {
root /usr/share/nginx/html;
}
location / { location / {
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
} }