11 lines
353 B
Plaintext
11 lines
353 B
Plaintext
|
|
<VirtualHost *:443>
|
||
|
|
ServerAdmin webmaster@localhost
|
||
|
|
DocumentRoot /var/www/html
|
||
|
|
|
||
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||
|
|
|
||
|
|
SSLEngine on
|
||
|
|
SSLCertificateFile /etc/ssl/certs/private/tls.crt
|
||
|
|
SSLCertificateKeyFile /etc/ssl/certs/private/tls.key
|
||
|
|
</VirtualHost>
|