summaryrefslogtreecommitdiff
path: root/apache/conf.d
diff options
context:
space:
mode:
authorthrowaway <developerthrowaway@protonmail.com>2024-01-08 23:14:27 -0800
committerthrowaway <developerthrowaway@protonmail.com>2024-01-08 23:14:27 -0800
commit0cea51e5a3aedd9faefc6029d6d0b28fe86c3db1 (patch)
tree538cafd857e288f0f008a23fe54c06bdf99bec55 /apache/conf.d
parented5a992354fc07e8ca73ef4865f6664ff24d504c (diff)
generate 4get config from env variables
Diffstat (limited to 'apache/conf.d')
-rw-r--r--apache/conf.d/ssl.conf19
1 files changed, 19 insertions, 0 deletions
diff --git a/apache/conf.d/ssl.conf b/apache/conf.d/ssl.conf
new file mode 100644
index 0000000..7b0dd15
--- /dev/null
+++ b/apache/conf.d/ssl.conf
@@ -0,0 +1,19 @@
+LoadModule ssl_module modules/mod_ssl.so
+LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
+
+SSLRandomSeed startup file:/dev/urandom 512
+SSLRandomSeed connect builtin
+
+Listen 443
+
+SSLCipherSuite HIGH:MEDIUM:!MD5:!RC4:!3DES:!ADH
+SSLProxyCipherSuite HIGH:MEDIUM:!MD5:!RC4:!3DES:!ADH
+SSLHonorCipherOrder on
+
+SSLProtocol all -SSLv3
+SSLProxyProtocol all -SSLv3
+
+SSLPassPhraseDialog builtin
+
+SSLSessionCache "shmcb:/var/cache/mod_ssl/scache(512000)"
+SSLSessionCacheTimeout 300