1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/invoiceninja5_ynh.git synced 2024-09-03 19:26:23 +02:00

try to fix nging

This commit is contained in:
Sebastian Gumprich 2021-10-03 10:32:13 +02:00
parent b8fd235e51
commit 897af11094

View file

@ -5,10 +5,10 @@ location ^~ __PATH__/ {
# Path to source # Path to source
alias __FINALPATH__/public/; alias __FINALPATH__/public/;
try_files $uri $uri/ =404; try_files $uri $uri/ index.php?q=;
if (!-e $request_filename) { if (!-e $request_filename) {
rewrite ^(.+)$ /index.php?q= last; rewrite ^(.+)$ __PATH__/index.php?q= last;
} }
# Add headers to serve security related headers # Add headers to serve security related headers
@ -52,7 +52,7 @@ location ^~ __PATH__/ {
} }
location ~* \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ { location ~* \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ {
try_files $uri __FINALPATH__/index.php$request_uri; try_files $uri __FINALPATH__/public/index.php$request_uri;
# Optional: Don't log access to other assets # Optional: Don't log access to other assets
access_log off; access_log off;
} }