summaryrefslogtreecommitdiff
path: root/files/vhosts.d/CentOS
diff options
context:
space:
mode:
authoro <o@immerda.ch>2014-11-14 11:47:35 +0100
committero <o@immerda.ch>2014-11-15 18:05:30 +0100
commit49064cc0ad4f89dd7aaa2690436c30a26a0385f9 (patch)
treeeef8e7f004b01a088612daf581a398522ab347da /files/vhosts.d/CentOS
parent91ce5c16d26a51d7b61416e18b899e4ac115fa25 (diff)
sni: make ssl_cert configurable per vhost
to support sni we configure ssl_certs on a vhost basis. additionally this commit introduces a generic configuration hash which will be used to replace most other parameters in the future.
Diffstat (limited to 'files/vhosts.d/CentOS')
-rw-r--r--files/vhosts.d/CentOS/0-default_ssl.conf21
1 files changed, 0 insertions, 21 deletions
diff --git a/files/vhosts.d/CentOS/0-default_ssl.conf b/files/vhosts.d/CentOS/0-default_ssl.conf
deleted file mode 100644
index d018bcc..0000000
--- a/files/vhosts.d/CentOS/0-default_ssl.conf
+++ /dev/null
@@ -1,21 +0,0 @@
-############################################################
-### This file is managed by PUPPET! ####
-### Only modify in repo or you will loose the changes! ####
-############################################################
-
-<VirtualHost *:443>
- Include include.d/defaults.inc
- Include include.d/ssl_defaults.inc
- DocumentRoot /var/www/html
-
- # Use separate log files for the SSL virtual host; note that LogLevel
- # is not inherited from httpd.conf.
- ErrorLog logs/ssl_error_log
- TransferLog logs/ssl_access_log
- LogLevel warn
-
- SSLCertificateFile /etc/pki/tls/certs/localhost.crt
- SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
-</VirtualHost>
-
-# vim: ts=4 filetype=apache