summarylogtreecommitdiffstats
path: root/apache.example.conf
blob: 2c6e2f7b92f28c0fa3d970d8276c08b4b0a532f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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>