We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3d383e commit ef6969eCopy full SHA for ef6969e
1 file changed
server/conf/apache_ispconfig.conf.master
@@ -12,7 +12,27 @@ CustomLog "| /usr/local/ispconfig/server/scripts/vlogger -s access.log -t \"%Y%m
12
Deny from all
13
</Directory>
14
15
+# Do not allow access to the root file system of the server for security reasons
16
+<Directory />
17
+ AllowOverride None
18
+ Order Deny,Allow
19
+ Deny from all
20
+</Directory>
21
+
22
+# Except of the following directories that contain website scripts
23
+<Directory /usr/share/phpmyadmin>
24
+ Order allow,deny
25
+ Allow from all
26
27
28
+<Directory /usr/share/squirrelmail>
29
30
31
32
33
34
<tmpl_loop name="ip_adresses">
35
NameVirtualHost {tmpl_var name="ip_address"}:80
36
NameVirtualHost {tmpl_var name="ip_address"}:443
37
</tmpl_loop>
38
0 commit comments