diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-01-27 18:05:46 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-01-27 18:05:46 +0100 |
commit | e262de9b2ddb48d618f45a1b28619b068f76ebac (patch) | |
tree | 30c808bb82dfc25df1cfea5876415565ecbef0c0 /install/sample-lighttpd.conf | |
parent | 5c2f7a744a544a228b809da5e788795ba89ecb08 (diff) | |
download | volse-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-lighttpd.conf')
-rw-r--r-- | install/sample-lighttpd.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/sample-lighttpd.conf b/install/sample-lighttpd.conf index db26c3b64..b65d86645 100644 --- a/install/sample-lighttpd.conf +++ b/install/sample-lighttpd.conf @@ -79,7 +79,7 @@ $HTTP["url"] =~ "\.(out|log|htaccess)$" { url.access-deny = ("") } -$HTTP["url"] =~ "(^|/)\.git|(^|/)store" { +$HTTP["url"] =~ "(^|/)\.git|(^|/)store|(^|/)util" { url.access-deny = ("") } |