diff options
author | Thomas Arendsen Hein <thomas@intevation.de> | 2009-03-03 16:59:00 (GMT) |
---|---|---|
committer | Thomas Arendsen Hein <thomas@intevation.de> | 2009-03-03 16:59:00 (GMT) |
commit | 9ee56f8b3a56a91c5257090018749b69801f450b (patch) | |
tree | 899aa6d485fda133882746b743126684c0923bd8 | |
parent | 7ef87e63b49900a9de2c22eef2e636cfb731dd02 (diff) | |
download | kolab-conf-9ee56f8b3a56a91c5257090018749b69801f450b.tar.gz |
Fix kolab/issue3447 (Heavy information leak from webclient directories)
-rw-r--r-- | conf/templates/httpd.conf.template.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/conf/templates/httpd.conf.template.in b/conf/templates/httpd.conf.template.in index 013d617..b95f6be 100644 --- a/conf/templates/httpd.conf.template.in +++ b/conf/templates/httpd.conf.template.in @@ -239,6 +239,11 @@ ScriptAlias /cgi-bin/ "@webserver_document_root@/cgi-bin/" AddDefaultCharset Off </Directory> +<Directory "@webserver_document_root@/client"> + AllowOverride All + Allow from all +</Directory> + <Directory "@webserver_document_root@/fbview"> AllowOverride All Allow from all |