You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
840 B
25 lines
840 B
1 year ago
|
<VirtualHost %ip%:%web_port%>
|
||
|
ServerName %domain_idn%
|
||
|
ServerAlias %alias_idn%
|
||
|
Alias / /var/lib/rainloop/
|
||
|
Alias /error/ %home%/%user%/web/%root_domain%/document_errors/
|
||
|
#SuexecUserGroup %user% %group%
|
||
|
|
||
|
IncludeOptional %home%/%user%/conf/mail/%root_domain%/apache2.forcessl.conf*
|
||
|
|
||
|
<Directory /var/lib/rainloop/>
|
||
|
Options +FollowSymLinks
|
||
|
# This is needed to parse /var/lib/rainloop/.htaccess. See its
|
||
|
# content before setting AllowOverride to None.
|
||
|
AllowOverride All
|
||
|
order allow,deny
|
||
|
allow from all
|
||
|
</Directory>
|
||
|
|
||
|
# Protecting basic directories:
|
||
|
<Directory /var/lib/rainloop/data>
|
||
|
Options -FollowSymLinks
|
||
|
AllowOverride None
|
||
|
</Directory>
|
||
|
IncludeOptional %home%/%user%/conf/mail/%root_domain%/%web_system%.conf_*
|
||
|
</VirtualHost>
|