From 2f87bfdc69052cd64e84b1d2b97a0af14991a385 Mon Sep 17 00:00:00 2001 From: ArthurHoaro Date: Wed, 21 Oct 2020 15:23:30 +0200 Subject: Fix: nginx - add rule to disable url-rewriting for the docs Related to #1603 --- .docker/nginx.conf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.docker') diff --git a/.docker/nginx.conf b/.docker/nginx.conf index 07fba33f..023f52c1 100644 --- a/.docker/nginx.conf +++ b/.docker/nginx.conf @@ -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; -- cgit v1.2.3