mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-01-27 14:07:56 +03:00
15 lines
463 B
Plaintext
15 lines
463 B
Plaintext
<VirtualHost *:443>
|
|
#ServerName www.example.com
|
|
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot /var/www/testrail
|
|
|
|
SSLEngine on
|
|
SSLCertificateFile /etc/apache2/ssl/certificate.crt
|
|
SSLCertificateKeyFile /etc/apache2/ssl/key.pem
|
|
SSLCertificateChainFile /etc/apache2/ssl/certificate.crt
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/ssl_error.log
|
|
CustomLog ${APACHE_LOG_DIR}/ssl_access.log combined
|
|
</VirtualHost>
|