Skip to content
Snippets Groups Projects
Commit f3d383ec authored by tbrehm's avatar tbrehm
Browse files

Changed apache_ispconfig.conf.master template to allow access to phpmyadmin...

Changed apache_ispconfig.conf.master template to allow access to phpmyadmin and squirrelmail in debian.
parent 6697ebba
No related branches found
No related tags found
No related merge requests found
...@@ -13,4 +13,22 @@ CustomLog "| /usr/local/ispconfig/server/scripts/vlogger -s access.log -t \"%Y%m ...@@ -13,4 +13,22 @@ CustomLog "| /usr/local/ispconfig/server/scripts/vlogger -s access.log -t \"%Y%m
Deny from all Deny from all
</Directory> </Directory>
# Do not allow access to the root file system of the server for security reasons
<Directory />
AllowOverride None
Order Deny,Allow
Deny from all
</Directory>
# Except of the following directories that contain website scripts
<Directory /usr/share/phpmyadmin>
Order allow,deny
Allow from all
</Directory>
<Directory /usr/share/squirrelmail>
Order allow,deny
Allow from all
</Directory>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment