0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-09 22:31:50 -05:00

🐛 Fix incorrect queryparams handling on default nginx entrypoint

This commit is contained in:
Andrey Antukh 2024-04-12 10:50:13 +02:00
parent c9fbb21924
commit 83f8218bf3
2 changed files with 2 additions and 2 deletions

View file

@ -224,7 +224,7 @@ http {
add_header Last-Modified $date_gmt;
add_header Cache-Control "no-store, no-cache, max-age=0" always;
if_modified_since off;
try_files $uri /index.html$is_args$args =404;
try_files $uri /index.html$is_args$args /index.html =404;
}
}
}

View file

@ -202,7 +202,7 @@ http {
add_header Last-Modified $date_gmt;
add_header Cache-Control "no-store, no-cache, max-age=0" always;
if_modified_since off;
try_files $uri /index.html$is_args$args =404;
try_files $uri /index.html$is_args$args /index.html =404;
}
}
}