summaryrefslogtreecommitdiff
path: root/apache/vhosts.d/0DEFAULT
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2002-10-30 15:53:30 +0000
committerJonas Smedegaard <dr@jones.dk>2002-10-30 15:53:30 +0000
commite1e2510f3cc96611f1a83d5692054a5a6476b3ef (patch)
tree0c8c3824f6c6d852c810b6dac6395b7b34f459f1 /apache/vhosts.d/0DEFAULT
parent8db4df3b64aac3524dc731f5f354edb6803636df (diff)
apache: Add vhosts.d, include.d and some example config snippets.
Diffstat (limited to 'apache/vhosts.d/0DEFAULT')
-rw-r--r--apache/vhosts.d/0DEFAULT17
1 files changed, 17 insertions, 0 deletions
diff --git a/apache/vhosts.d/0DEFAULT b/apache/vhosts.d/0DEFAULT
new file mode 100644
index 0000000..364a825
--- /dev/null
+++ b/apache/vhosts.d/0DEFAULT
@@ -0,0 +1,17 @@
+<VirtualHost *>
+ServerName 107b.dk
+ServerAlias www
+ServerAdmin webmaster@107b.dk
+DocumentRoot /home/web/websites/107b.dk
+
+ScriptAlias /cgi-bin/ /home/web/webscripts/107b.dk/
+User web
+Group web
+</VirtualHost>
+
+<VirtualHost *>
+ServerName www.107b.dk
+RewriteEngine On
+RewriteRule / http://107b.dk/ [R]
+TransferLog /dev/null
+</VirtualHost>