diff options
Diffstat (limited to 'ftp/horde-gollem/files/httpd.conf.gollem')
-rw-r--r-- | ftp/horde-gollem/files/httpd.conf.gollem | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ftp/horde-gollem/files/httpd.conf.gollem b/ftp/horde-gollem/files/httpd.conf.gollem new file mode 100644 index 00000000000..1730fcd8341 --- /dev/null +++ b/ftp/horde-gollem/files/httpd.conf.gollem @@ -0,0 +1,27 @@ +# This is included in Apache's httpd.conf for Gollem +# +# For security, don't serve pages from the Gollem configuration and +# library directories. +# +<Directory "/home/httpd/html/horde/gollem/config"> + order deny,allow + deny from all +</Directory> +<Directory "/home/httpd/html/horde/gollem/lib"> + order deny,allow + deny from all +</Directory> +<Directory "/home/httpd/html/horde/gollem/locale"> + order deny,allow + deny from all +</Directory> +<Directory "/home/httpd/html/horde/gollem/po"> + order deny,allow + deny from all +</Directory> +<Directory "/home/httpd/html/horde/gollem/templates"> + order deny,allow + deny from all +</Directory> +# End of Gollem configuration ================ + |