mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
17 lines
544 B
Plaintext
17 lines
544 B
Plaintext
<IfModule mod_alias.c>
|
|
Alias /owncloud /usr/share/webapps/owncloud/
|
|
</IfModule>
|
|
<Directory /usr/share/webapps/owncloud/>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
php_admin_value open_basedir "/srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/"
|
|
</Directory>
|
|
<VirtualHost *:80>
|
|
ServerAdmin foo@myowncloud.com
|
|
DocumentRoot /usr/share/webapps/owncloud
|
|
ServerName myowncloud.com
|
|
ErrorLog logs/owncloud.info-error_log
|
|
CustomLog logs/owncloud.info-access_log common
|
|
</VirtualHost>
|