logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: mod_ssl / chain cert issue
Author
dave562



Joined: 25 Aug 2011
Posts: 1

PostPosted: Thu 25 Aug '11 22:41    Post subject: mod_ssl / chain cert issue Reply with quote

I am running the WAMP stack with Apache 2.2.17 on Windows Server 2008 R2. Apache itself is running fine and I had it working with a self-signed certificate. When I try to install a legit certificate from Entrust, Apache fails to start. I will include the httpd-ssl config file below. Where can I find error logs that might point to the problem? For whatever reasons the ErrorLog directory specified in the config file does not seem to be working. There is an error.log there but it is not recent and does not seem to be reflecting whatever errors are preventing the service from starting.

Thanks in advance.

---<httpd-ssl.conf>---


Listen 443

AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl

SSLPassPhraseDialog builtin
SSLSessionCache "shmcb:c:/wamp/bin/apache/Apache2.2.17/logs/ssl_scache(512000)"
SSLSessionCacheTimeout 300

SSLMutex default

<VirtualHost _default_:443>

DocumentRoot "c:/wamp/www"
ServerName (omitted):443

ErrorLog "c:/wamp/bin/apache/Apache2.2.17/logs/error.log"
TransferLog "c:/wamp/bin/apache/Apache2.2.17/logs/access.log"

SSLEngine on


SSLCertificateFile "c:/SSL Certificates/(omitted).crt"
SSLCertificateKeyFile "c:/SSL Certificates/private.key"
SSLCertificateChainFile "c:/SSL Certificates/L1Croot.crt"

<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory "c:/wamp/bin/apache/Apache2.2.17/cgi-bin">
SSLOptions +StdEnvVars
</Directory>


BrowserMatch ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0

CustomLog "c:/wamp/bin/apache/Apache2.2.17/logs/ssl_request.log" \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"

</VirtualHost>
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7328
Location: Germany, Next to Hamburg

PostPosted: Sat 27 Aug '11 13:20    Post subject: Reply with quote

What error do you get if you try to start apache from the command line with this?

Code:

httpd -S
Back to top


Reply to topic   Topic: mod_ssl / chain cert issue View previous topic :: View next topic
Post new topic   Forum Index -> Apache