32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
<VirtualHost *:4430>
|
|
ServerAdmin james_webmaster@ketrenos.com
|
|
ServerName misty-dog.ketrenos.com
|
|
ServerAlias misty-dog.ketrenos.com
|
|
|
|
DocumentRoot /home/marina/misty-dog/
|
|
|
|
<Location />
|
|
ProxyPass http://192.168.1.78:11011/
|
|
ProxyPassReverse http://192.168.1.78:11011/
|
|
</Location>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
|
|
# Possible values include: debug, info, notice, warn, error, crit,
|
|
# alert, emerg.
|
|
LogLevel warn
|
|
SSLEngine on
|
|
SSLProtocol all -SSLv2 -SSLv3
|
|
SSLCipherSuite ALL:!DH:!EXPORT:!RC4:+HIGH:+MEDIUM:!LOW:!aNULL:!eNULL
|
|
|
|
CustomLog /var/log/apache2/ssl_request.log "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
|
|
|
|
BrowserMatch "MSIE [2-6]" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
|
|
# MSIE 7 and newer should be able to use keepalive
|
|
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
|
|
|
|
SSLCertificateFile /etc/letsencrypt/live/ketrenos.com/fullchain.pem
|
|
SSLCertificateKeyFile /etc/letsencrypt/live/ketrenos.com/privkey.pem
|
|
Include /etc/letsencrypt/options-ssl-apache.conf
|
|
</VirtualHost>
|