34 lines
No EOL
879 B
Text
34 lines
No EOL
879 B
Text
<Macro NCSite $domain $pool>
|
|
<VirtualHost *:80>
|
|
|
|
ServerName $domain
|
|
DocumentRoot /data/nextcloud/$domain/
|
|
Include /etc/apache2/conf-available/sao-cache.conf
|
|
IncludeOptional /etc/apache2/conf-available/$domain.alias.conf
|
|
|
|
ProxyTimeout 900
|
|
|
|
<FilesMatch \.php$>
|
|
SetHandler "proxy:unix:/run/php/php-fpm-$pool.sock|fcgi://$domain/"
|
|
</FilesMatch>
|
|
|
|
<Proxy "fcgi://$domain/">
|
|
</Proxy>
|
|
|
|
<Directory /data/nextcloud/$domain/>
|
|
Require all granted
|
|
AllowOverride All
|
|
Options FollowSymLinks MultiViews
|
|
<IfModule mod_dav.c>
|
|
Dav off
|
|
</IfModule>
|
|
</Directory>
|
|
|
|
</VirtualHost>
|
|
|
|
</Macro>
|
|
|
|
# Includieren der Variablen
|
|
Include /etc/apache2/conf-available/nextcloud_sites.conf
|
|
|
|
UndefMacro NCSite |