🐛: fix a bug that prevented images/logos to be displayed properly

This commit is contained in:
VC
2025-02-14 11:22:53 +01:00
parent d7285bccd7
commit 78fe8d0148

View File

@@ -9,12 +9,12 @@ server {
} }
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ { location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
expires 2w; expires 2w;
log_not_found off; log_not_found off;
} }
location / { location / {
try_files _ /index.php$is_args$args; try_files $uri $uri/ /index.php$is_args$args;
} }
location ~ index\.php$ { location ~ index\.php$ {