Fix hardcoded ? in nginx rewrite rule

Pull: https://github.com/crater-invoice/crater/pull/819
This commit is contained in:
gdarko
2024-01-29 02:48:02 -06:00
parent c285c166b5
commit ae6ce850c3

View File

@@ -16,7 +16,7 @@ server {
fastcgi_read_timeout 300;
}
location / {
try_files $uri $uri/ /index.php?$query_string;
try_files $uri $uri/ /index.php$is_args$query_string;
gzip_static on;
}
}