aboutsummaryrefslogtreecommitdiff
path: root/roles/apache/templates/ssl.conf.j2
blob: 04587a2c0510e15bce34444f6e36651956015f37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This file is managed by Ansible. Do not change.

SSLEngine on

SSLProtocol -all +TLSv1.2 +TLSv1.3

SSLCertificateFile {{ apache_ssl_cert }}
SSLCertificateKeyFile {{ apache_ssl_key }}

<FilesMatch "\.(cgi|shtml|phtml|php)$">
		SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
		SSLOptions +StdEnvVars
</Directory>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet