summaryrefslogtreecommitdiff
path: root/files/vhosts.d
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-11-07 17:39:14 +0000
committermh <mh@immerda.ch>2008-11-07 17:39:14 +0000
commit9486035e9d45a42626db68afd2bd574071790d9f (patch)
tree7ee90d030fbbcfb33a8e9eb620e12a4e93d457be /files/vhosts.d
parent0a2285a6f457b02d544a9fd87d5d096c74714d4a (diff)
generalized various config styles
finished support for openbsd
Diffstat (limited to 'files/vhosts.d')
-rw-r--r--files/vhosts.d/Gentoo/0-default.conf (renamed from files/vhosts.d/Gentoo/00_default_vhost.conf)0
-rw-r--r--files/vhosts.d/Gentoo/0-default_ssl.conf (renamed from files/vhosts.d/Gentoo/00_default_ssl_vhost.conf)0
-rw-r--r--files/vhosts.d/OpenBSD/0-default.conf8
-rw-r--r--files/vhosts.d/OpenBSD/0-default_ssl.conf9
4 files changed, 17 insertions, 0 deletions
diff --git a/files/vhosts.d/Gentoo/00_default_vhost.conf b/files/vhosts.d/Gentoo/0-default.conf
index 0346845..0346845 100644
--- a/files/vhosts.d/Gentoo/00_default_vhost.conf
+++ b/files/vhosts.d/Gentoo/0-default.conf
diff --git a/files/vhosts.d/Gentoo/00_default_ssl_vhost.conf b/files/vhosts.d/Gentoo/0-default_ssl.conf
index 7efe879..7efe879 100644
--- a/files/vhosts.d/Gentoo/00_default_ssl_vhost.conf
+++ b/files/vhosts.d/Gentoo/0-default_ssl.conf
diff --git a/files/vhosts.d/OpenBSD/0-default.conf b/files/vhosts.d/OpenBSD/0-default.conf
new file mode 100644
index 0000000..3ba2c0a
--- /dev/null
+++ b/files/vhosts.d/OpenBSD/0-default.conf
@@ -0,0 +1,8 @@
+<VirtualHost *:80>
+ Include conf.d/defaults.inc
+
+ DocumentRoot /var/www/htdocs/default/www/
+ ErrorLog /var/www/htdocs/default/logs/default_error_log
+ CustomLog /var/www/htdocs/default/logs/default_access_log combined
+</VirtualHost>
+
diff --git a/files/vhosts.d/OpenBSD/0-default_ssl.conf b/files/vhosts.d/OpenBSD/0-default_ssl.conf
new file mode 100644
index 0000000..83d65ec
--- /dev/null
+++ b/files/vhosts.d/OpenBSD/0-default_ssl.conf
@@ -0,0 +1,9 @@
+<VirtualHost *:443>
+ Include conf.d/defaults.inc
+ Include conf.d/ssl_defaults.inc
+
+ DocumentRoot /var/www/htdocs/default/www/
+ ErrorLog /var/www/htdocs/default/logs/default_error_log
+ CustomLog /var/www/htdocs/default/logs/default_access_log combined
+</VirtualHost>
+