summaryrefslogtreecommitdiff
path: root/apache2/conf.d
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2020-10-11 21:13:07 +0200
committerJonas Smedegaard <dr@jones.dk>2020-10-11 21:13:07 +0200
commitb43721e0c52c05b273cbf4cdcde1a54e5dc87c7e (patch)
treec69100d4df00b615a2bcb41d29d68960ddc0ce56 /apache2/conf.d
parentba4e3d3b24bacc22a5e86e7b33df40775d77d7d4 (diff)
have apache2 example vhost snippets include snippet local-ssl from conf-available, and drop obsolete snippet conf.d/local-ssl.conf
Diffstat (limited to 'apache2/conf.d')
-rw-r--r--apache2/conf.d/local-ssl.conf25
1 files changed, 0 insertions, 25 deletions
diff --git a/apache2/conf.d/local-ssl.conf b/apache2/conf.d/local-ssl.conf
deleted file mode 100644
index 3626e25..0000000
--- a/apache2/conf.d/local-ssl.conf
+++ /dev/null
@@ -1,25 +0,0 @@
-SSLEngine on
-SSLCertificateFile /etc/ssl/certs/apache2.pem
-SSLCertificateKeyFile /etc/ssl/private/apache2.pem
-SSLCACertificatePath /etc/ssl/certs/
-#SSLCARevocationPath /etc/apache2/ssl.crl/
-#SSLCARevocationFile /etc/apache2/ssl.crl/ca-bundle.crl
-
-#SSLVerifyClient require
-#SSLVerifyDepth 10
-
-#SSLOptions +FakeBasicAuth +ExportCertData +StrictRequire
-<FilesMatch "\.(cgi|shtml|phtml|php)$">
- SSLOptions +StdEnvVars
-</FilesMatch>
-<Directory /usr/lib/cgi-bin>
- SSLOptions +StdEnvVars
-</Directory>
-
-BrowserMatch "MSIE [2-6]" \
- nokeepalive ssl-unclean-shutdown \
- downgrade-1.0 force-response-1.0
-# MSIE 7 and newer should be able to use keepalive
-BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
-
-#CustomLog /var/log/apache2/ssl_request_log "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"