summaryrefslogtreecommitdiffstats
path: root/solve/apache-config.conf
diff options
context:
space:
mode:
Diffstat (limited to 'solve/apache-config.conf')
-rw-r--r--solve/apache-config.conf15
1 files changed, 15 insertions, 0 deletions
diff --git a/solve/apache-config.conf b/solve/apache-config.conf
new file mode 100644
index 0000000..42b6468
--- /dev/null
+++ b/solve/apache-config.conf
@@ -0,0 +1,15 @@
+<VirtualHost *:1024>
+ ServerAdmin me@mydomain.com
+ DocumentRoot /var/www/site
+
+ <Directory /var/www/site/>
+ Options -Indexes +FollowSymLinks +MultiViews
+ AllowOverride All
+ Order deny,allow
+ Allow from all
+ </Directory>
+
+ ErrorLog ${APACHE_LOG_DIR}/error.log
+ CustomLog ${APACHE_LOG_DIR}/access.log combined
+
+</VirtualHost>