11 lines
253 B
Plaintext
11 lines
253 B
Plaintext
<VirtualHost *:443>
|
|
DocumentRoot "/var/www/html"
|
|
ServerName localhost
|
|
|
|
SSLEngine on
|
|
SSLCertificateFile "/etc/ssl/certs/localhost.crt"
|
|
SSLCertificateKeyFile "/etc/ssl/private/localhost.key"
|
|
|
|
# Other directives here
|
|
</VirtualHost>
|