blob: 988e20017eb2312c9226544e864e599514685f40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<IfModule mod_alias.c>
Alias /owncloud /usr/share/webapps/owncloud/
</IfModule>
<Directory /usr/share/webapps/owncloud/>
Options FollowSymlinks
AllowOverride all
Require all granted
</Directory>
<VirtualHost *:80>
ServerAdmin foo@foofarm.com
DocumentRoot /usr/share/webapps/owncloud
ServerName owncloud.foo.com
ErrorLog /var/log/httpd/owncloud.foo.info-error_log
CustomLog /var/log/httpd/owncloud.foo.info-access_log common
</VirtualHost>
|