mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-24 14:00:44 +08:00
19 lines
509 B
Django/Jinja
19 lines
509 B
Django/Jinja
MDomain {{ inventory_hostname }}
|
|
ServerName {{ inventory_hostname }}
|
|
ServerAdmin mizdebsk@fedoraproject.org
|
|
MDCertificateAgreement https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf
|
|
MDRequireHttps temporary
|
|
|
|
<VirtualHost *:80>
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:443>
|
|
SSLEngine on
|
|
SSLHonorCipherOrder On
|
|
SSLCipherSuite {{ ssl_ciphers }}
|
|
SSLProtocol {{ ssl_protocols }}
|
|
|
|
ProxyPass / http://localhost:9000/
|
|
ProxyPassReverse / http://localhost:9000/
|
|
</VirtualHost>
|