mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Part of #7593. * Refactor tests out of packaged module for apache plugin * Exclude pycache and .py[cod] * Change tests path in tox.ini
18 lines
627 B
Text
18 lines
627 B
Text
<VirtualHost [::]:443 *:443>
|
|
DocumentRoot /tmp
|
|
ServerName example.com
|
|
ServerAlias www.example.com
|
|
CustomLog ${APACHE_LOG_DIR}/example.log combined
|
|
<Directory "/tmp">
|
|
AllowOverride All
|
|
</Directory>
|
|
|
|
SSLEngine on
|
|
|
|
SSLHonorCipherOrder On
|
|
SSLProtocol all -SSLv2 -SSLv3
|
|
SSLCipherSuite "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH +aRSA RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS"
|
|
|
|
SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem
|
|
SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
|
|
</VirtualHost>
|