22 lines
560 B
Plaintext
22 lines
560 B
Plaintext
|
<IfModule mod_alias.c>
|
||
|
Alias /nextcloud /usr/share/webapps/nextcloud/
|
||
|
</IfModule>
|
||
|
|
||
|
<Directory /usr/share/webapps/nextcloud/>
|
||
|
Options FollowSymlinks
|
||
|
AllowOverride all
|
||
|
Require all granted
|
||
|
</Directory>
|
||
|
|
||
|
<VirtualHost *:80>
|
||
|
ServerAdmin foo@foofarm.com
|
||
|
DocumentRoot /usr/share/webapps/nextcloud
|
||
|
ServerName nextcloud.foo.com
|
||
|
ErrorLog /var/log/httpd/nextcloud.foo.info-error_log
|
||
|
CustomLog /var/log/httpd/nextcloud.foo.info-access_log common
|
||
|
</VirtualHost>
|
||
|
|
||
|
<IfModule mpm_itk_module>
|
||
|
AssignUserId nextcloud nextcloud
|
||
|
</IfModule>
|