16 lines
327 B
Plaintext
16 lines
327 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/apache2/certs/apache.crt
|
|
|
|
SSLCertificateKeyFile /etc/apache2/certs/apache.key
|
|
|
|
</VirtualHost> |