21 lines
589 B
Plaintext
21 lines
589 B
Plaintext
<IfModule mod_ssl.c>
|
|
<VirtualHost _default_:443>
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot /var/www/html
|
|
|
|
SSLEngine on
|
|
SSLCertificateFile /etc/letsencrypt/live/nnks.truckwash.dk/fullchain.pem
|
|
SSLCertificateKeyFile /etc/letsencrypt/live/nnks.truckwash.dk/privkey.pem
|
|
|
|
<FilesMatch "\.(cgi|shtml|phtml|php)$">
|
|
SSLOptions +StdEnvVars
|
|
</FilesMatch>
|
|
|
|
<Directory /usr/lib/cgi-bin>
|
|
SSLOptions +StdEnvVars
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/ssl_access.log combined
|
|
</VirtualHost>
|
|
</IfModule> |