Category Archives: ssl

Apache 2 SSL Proxy

Configuration Edit httpd.conf LoadModule ssl_module modules/mod_ssl.so LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_connect_module modules/mod_proxy_connect.so LoadModule proxy_http_module modules/mod_proxy_http.so   Listen 443 NameVirtualHost *:443 <VirtualHost *:443> ServerName http://localhost # Serving https SSLEngine on SSLCertificateFile C:/certs/localhost.cer SSLCertificateKeyFile C:/localhost.key   ProxyRequests Off   <Proxy *> Order … Continue reading

Posted in apache, ssl | Comments Off on Apache 2 SSL Proxy