aboutsummaryrefslogtreecommitdiffstats
path: root/install/sample-nginx.conf
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-01-27 18:05:46 +0100
committerMario Vavti <mario@mariovavti.com>2019-01-27 18:05:46 +0100
commite262de9b2ddb48d618f45a1b28619b068f76ebac (patch)
tree30c808bb82dfc25df1cfea5876415565ecbef0c0 /install/sample-nginx.conf
parent5c2f7a744a544a228b809da5e788795ba89ecb08 (diff)
downloadvolse-hubzilla-e262de9b2ddb48d618f45a1b28619b068f76ebac.tar.gz
volse-hubzilla-e262de9b2ddb48d618f45a1b28619b068f76ebac.tar.bz2
volse-hubzilla-e262de9b2ddb48d618f45a1b28619b068f76ebac.zip
update nginx and lighttpd sample server configs to explicit dissalow access to util
Diffstat (limited to 'install/sample-nginx.conf')
-rw-r--r--install/sample-nginx.conf5
1 files changed, 5 insertions, 0 deletions
diff --git a/install/sample-nginx.conf b/install/sample-nginx.conf
index 839f208ae..6a986d426 100644
--- a/install/sample-nginx.conf
+++ b/install/sample-nginx.conf
@@ -141,5 +141,10 @@ server {
deny all;
}
+#deny access to util
+ location ~ /util {
+ deny all;
+ }
+
}