Dear Friends, Bellow I described my PROBLEM. Please help me. I tried Apache with SSL (both HTTP and HTTPS protocols). 1. ./apachectl stop 2. ./apachectl startssl Apache/1.3.29 mod_ssl/2.8.16 (Pass Phrase Dialog) Some of your private key files are encrypted for security reason In ordr to read them you have to provide us with the pas phrases Server servername.com:443 (RSA) Enter pass phrase: (I entered thepassword) OK: Pass Phrase Dialog successful ./apachctl startssl: http started 3. netscape http://www.servername.com/ there is an access and the page is displayed on the server and for any internet terminal 4. netscape https://www.servername.com/ - no access to the demon only Netscape is being loaded Netscape Error A network error occurred while Netscape was receiving data (Network Error: I/O error) Try connecting again. I have tried again unfortunately without a success - no access to the demon for Internet terminal
The
page cannot be displayed WHY??? Could you please explain what is wrong and give me any tips to find and fix the problem. Thank you in advance. Bellow I have set a snip of httpd.conf file. George Scienton Technologies Inc. Toronto - Canada
/------------------------------------------ httpd.conf
------------------------------------------/
<IfDefine
SSL>
LoadModule ssl_module libexec/libssl.so </IfDefine> <IfDefine SSL> AddModule mod_ssl.c </IfDefine> <IfDefine SSL> Listen 80 Listen 443 </IfDefine> <IfDefine SSL> AddType application/x-x509-ca-cert .crt AddType application/x-pkcs7-crl .crl </IfDefine> <IfModule mod_ssl.c> SSLPassPhraseDialog builtin SSLSessionCache dbm:/usr/local/apache/logs/ssl_scache SSLSessionCacheTimeout 300 SSLMutex file:/usr/local/apache/logs/ssl_mutex SSLRandomSeed startup builtin SSLRandomSeed connect builtin SSLLog /usr/local/apache/logs/ssl_engine_log SSLLogLevel debug </IfModule> <IfDefine SSL> <VirtualHost _default_:443> ServerName servername.com ServerAdmin [EMAIL PROTECTED] ErrorLog /usr/local/apache/logs/error_log TransferLog /usr/local/apache/logs/access_log SSLEngine on SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL SSLCertificateFile /usr/local/ssl/certs/sci-stor.com.crt SSLCertificateKeyFile /usr/local/ssl/private/sci-stor.com.key <Files ~ "\.(cgi|shtml|phtml|php3?)$"> SSLOptions +StdEnvVars </Files> <Directory "/usr/local/apache/cgi-bin"> SSLOptions +StdEnvVars </Directory> SetEnvIf User-Agent ".*MSIE.*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 CustomLog /usr/local/apache/logs/ssl_request_log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" </VirtualHost> </IfDefine> |