mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
30 lines
815 B
Plaintext
30 lines
815 B
Plaintext
# $NetBSD: roundcube.conf,v 1.6 2013/06/15 16:08:09 taca Exp $
|
|
#
|
|
# RoundCube configuration file fragment for Apache
|
|
|
|
<IfModule mod_alias.c>
|
|
Alias /roundcube "@RCDIR@/"
|
|
</IfModule>
|
|
|
|
# Don't forget to adapt the configuration in @RCDIR@/.htaccess
|
|
# to your liking.
|
|
<Directory "@RCDIR@">
|
|
AllowOverride All
|
|
DirectoryIndex index.php
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
#
|
|
# For security, don't serve pages from the roundcube installer directory.
|
|
#
|
|
# If you are using the installer to setup roundcube you will need access to
|
|
# the installer/ directory for the initial setup. It is recommended that
|
|
# after installation you uncomment the following block in order to restrict
|
|
# access to that directory.
|
|
#
|
|
#<Directory "@RCDIR@/installer">
|
|
# Order deny,allow
|
|
# Deny from all
|
|
#</Directory>
|