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

Fixed: FS#1620 - [Security] No Access in additional php.ini

parent 083b1972
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,12 @@ CustomLog "| /usr/local/ispconfig/server/scripts/vlogger -s access.log -t \"%Y%m
Deny from all
</Directory>
<Directory /var/www/conf>
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
......
......@@ -14,9 +14,15 @@ CustomLog "| /usr/local/ispconfig/server/scripts/vlogger -s access.log -t \"%Y%m
# Do not allow access to the root file system of the server for security reasons
<Directory />
AllowOverride None
Order Deny,Allow
Deny from all
AllowOverride None
Order Deny,Allow
Deny from all
</Directory>
<Directory /var/www/conf>
AllowOverride None
Order Deny,Allow
Deny from all
</Directory>
# Except of the following directories that contain website scripts
......
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