You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
485 B
19 lines
485 B
1 year ago
|
<VirtualHost directIP:directPORT>
|
||
|
ServerName directIP
|
||
|
DocumentRoot /var/www/html/
|
||
|
Alias /error/ /var/www/document_errors/
|
||
|
|
||
|
</VirtualHost>
|
||
|
|
||
|
<VirtualHost directIP:directSSLPORT>
|
||
|
ServerName directIP
|
||
|
DocumentRoot /var/www/html/
|
||
|
Alias /error/ /var/www/document_errors/
|
||
|
|
||
|
SSLEngine on
|
||
|
SSLVerifyClient none
|
||
|
SSLCertificateFile /usr/local/hestia/ssl/certificate.crt
|
||
|
SSLCertificateKeyFile /usr/local/hestia/ssl/certificate.key
|
||
|
|
||
|
</VirtualHost>
|