diff options
author | Joachim Tingvold <joachim@tingvold.com> | 2015-04-01 03:49:53 +0200 |
---|---|---|
committer | root <root@einstein.tg15.gathering.org> | 2015-04-01 03:49:53 +0200 |
commit | 41b1eca7a62d450bc0d2357027a6be6acd51a7a6 (patch) | |
tree | f7f5ceb504cc46e990d04d2da36f82dff7ff566b /fap/httpd/apache_base_config | |
parent | ee87dca5e68e0f8521163b5603717742b248e6b1 (diff) |
Changes...
Diffstat (limited to 'fap/httpd/apache_base_config')
-rw-r--r-- | fap/httpd/apache_base_config | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fap/httpd/apache_base_config b/fap/httpd/apache_base_config new file mode 100644 index 0000000..dc17635 --- /dev/null +++ b/fap/httpd/apache_base_config @@ -0,0 +1,15 @@ +root@copernicus:/home/lol# cat /etc/apache2/sites-enabled/000-default.conf | grep -v "#" +<VirtualHost *:80> + ServerAdmin webmaster@localhost + DocumentRoot /srv/fap/httpd/httpd_root/ + ErrorLog ${APACHE_LOG_DIR}/error.log + CustomLog ${APACHE_LOG_DIR}/access.log combined +</VirtualHost> + +root@copernicus:/home/lol# cat /etc/apache2/apache2.conf +[...] +<Directory /srv/fap/httpd/httpd_root/> + Options Indexes FollowSymLinks + AllowOverride All + Require all granted +</Directory> |