Skip to content

Commit

Permalink
remove directories from try files
Browse files Browse the repository at this point in the history
  • Loading branch information
fabio-ivona committed Mar 1, 2024
1 parent 28a35e5 commit b413978
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion storage/app/nginx/templates/site-ssl.conf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ server {
charset utf-8;

location / {
try_files $uri $uri/ /index.php?$query_string;
try_files $uri /index.php?$query_string;
}

location = /favicon.ico { access_log off; log_not_found off; }
Expand Down
2 changes: 1 addition & 1 deletion storage/app/nginx/templates/site.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ server {
charset utf-8;

location / {
try_files $uri $uri/ /index.php?$query_string;
try_files $uri /index.php?$query_string;
}

location = /favicon.ico { access_log off; log_not_found off; }
Expand Down

0 comments on commit b413978

Please sign in to comment.