ansible/roles/webserver/files/etc/apache2/sites-available/thunix.cf-le-ssl.conf

13 lines
434 B
Plaintext
Raw Normal View History

2018-12-21 14:50:46 +00:00
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin amcclure@ttm.sh
ServerName thunix.cf
2019-01-04 17:19:17 +00:00
DocumentRoot /var/www/thunix.cf
2018-12-21 14:50:46 +00:00
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLCertificateFile /etc/letsencrypt/live/thunix.cf/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/thunix.cf/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>