summarylogtreecommitdiffstats
path: root/apache.example.conf
diff options
context:
space:
mode:
authorSonic-Y3k2015-09-02 00:18:27 +0200
committerSonic-Y3k2015-09-02 00:18:27 +0200
commitda94a5a34454ce0f248378e649810fed6666007a (patch)
tree0b4bffc57a046bce467249063b784b278a8f639f /apache.example.conf
downloadaur-da94a5a34454ce0f248378e649810fed6666007a.tar.gz
Initial import
Diffstat (limited to 'apache.example.conf')
-rw-r--r--apache.example.conf18
1 files changed, 18 insertions, 0 deletions
diff --git a/apache.example.conf b/apache.example.conf
new file mode 100644
index 000000000000..65e8179220cd
--- /dev/null
+++ b/apache.example.conf
@@ -0,0 +1,18 @@
+<IfModule mod_alias.c>
+ Alias /lychee /usr/share/webapps/lychee/
+</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
+ ServerName lychee.foo.com
+ ErrorLog /var/log/httpd/lychee.foo.info-error_log
+ CustomLog /var/log/httpd/lychee.foo.info-access_log common
+</VirtualHost>