We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df24c38 commit a50d975Copy full SHA for a50d975
root/defaults/nginx/site-confs/default.conf.sample
@@ -12,18 +12,12 @@ server {
12
root /app/www/public;
13
index index.html index.htm index.php;
14
15
- error_page 599 = @noauth;
16
-
17
- location @noauth {
18
- try_files $uri $uri/ /index.php?$args;
19
- }
20
21
location / {
22
# enable for basic auth
23
#auth_basic "Restricted";
24
#auth_basic_user_file /config/nginx/.htpasswd;
25
26
- try_files $uri $uri/ /index.php?$query_string;
+ try_files $uri $uri/ /index.php$is_args$args;
27
}
28
29
location ~ ^(.+\.php)(.*)$ {
0 commit comments