Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Dirk Dankhoff
ISPConfig 3
Commits
3a741161
Commit
3a741161
authored
May 17, 2011
by
tbrehm
Browse files
Fixed: FS#1620 - [Security] No Access in additional php.ini
parent
083b1972
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/tpl/apache_ispconfig.conf.master
View file @
3a741161
...
...
@@ -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
...
...
server/conf/apache_ispconfig.conf.master
View file @
3a741161
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment