我正在尝试让SSL与WampServer一起使用。我正在关注this answer,我进入了这个部分:Now test your Apache installation by calling httpd -t
。
Apache此时不会重启。 Windows错误日志有一个条目:
The Apache service named reported the following error:
>>> Invalid command 'SSLCipherSuite', perhaps misspelled or defined by a module not included in the server configuration .
我可以在SSLCipherSuite
注释掉:
但随后在Windows错误报告中将下一个命令报告为无效命令。
任何指针?
答案 0 :(得分:2)
我遇到了同样的问题,并解决了运行命令的问题:
sudo a2enmod ssl
希望它对某人有帮助:)
答案 1 :(得分:1)
在Sender
中,需要打开httpd.conf
:
mod_ssl.so
然后下一个问题是打开LoadModule ssl_module modules/mod_ssl.so
:
mod_socache_shmcb.so
答案 2 :(得分:0)
您是否使用enable-ssl选项编译了Apache httpd。如果没有,请使用ssl重新编译httpd,然后添加mod_ssl配置。