Forum Moderators: phranque

Message Too Old, No Replies

HTTPS from remote computer

         

vladimircape

8:05 am on Jun 18, 2012 (gmt 0)

10+ Year Member



Hello, everyone. I had such problem , i configed my Apache to enable Https connection on my local machine(localhost).
Everything works fine, site is available on http and https, but when my college from our local network tried to open my site(i gave to him my IP) he can only do it on http ,on https he received error

Error 107 (net::ERR_SSL_PROTOCOL_ERROR):

How to fix it,

Listen 443
Timeout 22000
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 1800
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl
SSLPassPhraseDialog builtin
SSLSessionCache dbm:logs/ssl_scache
SSLSessionCacheTimeout 300
<VirtualHost test:443>
DocumentRoot "C:/apache/test"
ServerName test
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile c:/web/apache2.2/conf/cert/server.crt
SSLCertificateKeyFile c:/web/apache2.2/conf/cert/server.key
#SSLCACertificateFile /etc/ssl/ca.crt
</VirtualHost>

<VirtualHost test>
DocumentRoot "C:/apache/test"
ServerName test
SSLEngine off
</VirtualHost>