mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
15 lines
No EOL
404 B
Text
15 lines
No EOL
404 B
Text
<IfModule mod_alias.c>
|
|
Alias /owncloud /srv/http/owncloud/
|
|
</IfModule>
|
|
<Directory /srv/http/owncloud/>
|
|
Options None
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
<VirtualHost *:80>
|
|
ServerAdmin foo@foofarm.com
|
|
DocumentRoot /srv/http/owncloud
|
|
ServerName owncloud.foo.com
|
|
ErrorLog logs/owncloud.foo.info-error_log
|
|
CustomLog logs/owncloud.foo.info-access_log common
|
|
</VirtualHost> |