summaryrefslogtreecommitdiffstats
path: root/files/lists-dev/apache.conf.j2
blob: 96e9bea5b29747ef30069877775c92be91998f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<VirtualHost *:80>
    ServerAdmin admin@fedoraproject.org
    ServerName {{ ansible_hostname }}
</VirtualHost>
<VirtualHost *:443>
    ServerAdmin admin@fedoraproject.org
    ServerName {{ ansible_hostname }}

    SSLEngine on
    SSLCertificateFile    /etc/pki/tls/certs/localhost.crt
    SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
    #SSLCertificateChainFile /etc/pki/tls/cert.pem
    SSLHonorCipherOrder On
    SSLCipherSuite {{ ssl_ciphers }}
    SSLProtocol {{ ssl_protocols }}
</VirtualHost>