mirror of
https://github.com/penpot/penpot.git
synced 2025-07-18 17:57:11 +02:00
🐛 Fix incorrect queryparams handling on default nginx entrypoint
This commit is contained in:
parent
c9fbb21924
commit
83f8218bf3
2 changed files with 2 additions and 2 deletions
|
@ -224,7 +224,7 @@ http {
|
||||||
add_header Last-Modified $date_gmt;
|
add_header Last-Modified $date_gmt;
|
||||||
add_header Cache-Control "no-store, no-cache, max-age=0" always;
|
add_header Cache-Control "no-store, no-cache, max-age=0" always;
|
||||||
if_modified_since off;
|
if_modified_since off;
|
||||||
try_files $uri /index.html$is_args$args =404;
|
try_files $uri /index.html$is_args$args /index.html =404;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -202,7 +202,7 @@ http {
|
||||||
add_header Last-Modified $date_gmt;
|
add_header Last-Modified $date_gmt;
|
||||||
add_header Cache-Control "no-store, no-cache, max-age=0" always;
|
add_header Cache-Control "no-store, no-cache, max-age=0" always;
|
||||||
if_modified_since off;
|
if_modified_since off;
|
||||||
try_files $uri /index.html$is_args$args =404;
|
try_files $uri /index.html$is_args$args /index.html =404;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue