18 lines
550 B
Plaintext
18 lines
550 B
Plaintext
<IfModule mod_ssl.c>
|
|
<VirtualHost *:443>
|
|
ServerAdmin amcclure@ttm.sh
|
|
ServerName dev.thunix.cf
|
|
DocumentRoot /var/www/dev.thunix.cf
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
<Directorymatch "^/.*/\.git/">
|
|
Order deny,allow
|
|
Deny from all
|
|
</Directorymatch>
|
|
|
|
SSLCertificateFile /etc/letsencrypt/live/dev.thunix.cf-0001/fullchain.pem
|
|
SSLCertificateKeyFile /etc/letsencrypt/live/dev.thunix.cf-0001/privkey.pem
|
|
Include /etc/letsencrypt/options-ssl-apache.conf
|
|
</VirtualHost>
|
|
</IfModule>
|