summaryrefslogtreecommitdiff
path: root/files/vhosts.d/00_default_centos_vhost.conf
diff options
context:
space:
mode:
Diffstat (limited to 'files/vhosts.d/00_default_centos_vhost.conf')
-rw-r--r--files/vhosts.d/00_default_centos_vhost.conf39
1 files changed, 0 insertions, 39 deletions
diff --git a/files/vhosts.d/00_default_centos_vhost.conf b/files/vhosts.d/00_default_centos_vhost.conf
deleted file mode 100644
index 315fa13..0000000
--- a/files/vhosts.d/00_default_centos_vhost.conf
+++ /dev/null
@@ -1,39 +0,0 @@
-# ###########################################################
-# # copyleft 2008 immerda.ch
-# ###########################################################
-# ### this file is managed by PUPPET ####
-# ### only modify in svn or you will loose the changes ! ####
-# ###########################################################
-
-NameVirtualHost *:80
-
-<VirtualHost *:80>
- DocumentRoot /var/www/html
-
- RewriteEngine on
- RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
- RewriteRule .* - [F]
- ServerSignature Off
-</VirtualHost>
-
-<VirtualHost _default_:443>
- DocumentRoot /var/www/html
-
- SSLEngine on
-
- SSLCipherSuite HIGH:MEDIUM:!ADH:-SSLv2
-
- SSLCertificateFile /etc/pki/tls/certs/localhost.crt
- SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
- <Files ~ "\.(cgi|shtml|phtml|php3?)$">
- SSLOptions +StdEnvVars
- </Files>
-
- RewriteEngine on
- RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
- RewriteRule .* - [F]
- ServerSignature Off
-
-</VirtualHost>
-
-# vim: ts=4 filetype=apache