Fix: nginx - add rule to disable url-rewriting for the docs

Related to #1603
This commit is contained in:
ArthurHoaro 2020-10-21 15:23:30 +02:00
parent d8030c8155
commit 2f87bfdc69
2 changed files with 11 additions and 1 deletions

View file

@ -29,7 +29,7 @@ http {
log_not_found off;
deny all;
}
location ~ ~$ {
# deny access to temp editor files, e.g. "script.php~"
access_log off;
@ -65,6 +65,11 @@ http {
include fastcgi.conf;
}
location ~ /doc/ {
default_type "text/html";
try_files $uri $uri/ $uri.html =404;
}
location ~ \.php$ {
# deny access to all other PHP scripts
deny all;

View file

@ -325,6 +325,11 @@ server {
deny all;
}
location ~ /doc/ {
default_type "text/html";
try_files $uri $uri/ $uri.html =404;
}
location = /favicon.ico {
# serve the Shaarli favicon from its custom location
alias /var/www/shaarli/images/favicon.ico;