-2

I installed SSL using this guide but after I finished, I was unable to start up WampServer. I made sure to follow everything correctly in that guide (replacing the paths given in the guide with the ones on my computer).

I looked through my error logs and found nothing from the times I was trying to start the server. When I try to start it using command line with httpd -d, I get the error

AH00526: Syntax error on line 51 of ......./apache2.4.2/conf/extra/httpd_ssl.conf: 
Invalid command 'SSSLCipherSuite', perhaps misspelled or defined by a module not
included in the server configuration

although I have mod_ssl.so in my modules file.

Any ideas?

HopelessN00b
  • 54,273
David
  • 1

2 Answers2

2

SSSLCipherSuite <-- That's got one too many "S"s on the front.

I'm going to assume that typo is your problem. If not, make sure the SSL module is enabled and the directives are available (httpd -L).
If they aren't you need to load mod_ssl into your server (refer to the Apache manual for information on how to load modules)

voretaq7
  • 80,749
Chris S
  • 78,455
1

Try to match your configuration with the following lines, these are in my httpd.conf file for the ssl certificate and works fine.

SSLCertificateFile /etc/pki/tls/certs/yourcertificate.crt

SSLCertificateKeyFile /etc/pki/tls/private/yourprivatekey.key

SSLCertificateChainFile /etc/pki/tls/certs/yourintermediatecertificate.cer

Hope that helps.

Toqeer
  • 1,241