summarylogtreecommitdiffstats
path: root/apache.example.conf
blob: 8dc0fb2b003fa8a25b91a71ada61a365a0620d51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<IfModule mod_alias.c>
    Alias /lychee /usr/share/webapps/lychee/public
</IfModule>

<Directory /usr/share/webapps/lychee/>
    Options FollowSymlinks
    AllowOverride all
    Require all granted
    php_admin_value open_basedir "/srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/lychee/:/etc/webapps/lychee"
</Directory>

<VirtualHost *:80>
    ServerAdmin foo@foofarm.com
    DocumentRoot /usr/share/webapps/lychee/public
    ServerName lychee.foo.com
    ErrorLog /var/log/httpd/lychee.foo.info-error_log
    CustomLog /var/log/httpd/lychee.foo.info-access_log common
</VirtualHost>