aboutsummaryrefslogtreecommitdiffstats
path: root/roles/apache/templates/etc/httpd/conf.d/ssl.conf.j2
blob: eb85a29bb65351cd020804a97d82a8f55c21dcb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Listen 443 https

SSLPassPhraseDialog exec:/usr/libexec/httpd-ssl-pass-dialog

SSLSessionCache         shmcb:/run/httpd/sslcache(512000)
SSLSessionCacheTimeout  300

SSLCryptoDevice builtin

SSLProtocol             all -SSLv3 -TLSv1 -TLSv1.1
SSLCipherSuite          ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
SSLHonorCipherOrder     off
SSLSessionTickets       off

# Stapling causes all kinds of hard-to-debug problems on Android clients!
#SSLUseStapling On
#SSLStaplingCache "shmcb:logs/ssl_stapling(32768)"