How to disable SSLv3 in Apache on Windows installed by Xampp

回眸只為那壹抹淺笑 提交于 2019-12-24 03:17:02

问题


I'm attempting to disable SSLv3 in Apache which I've installed on Windows via xampp. But I'm having trouble figuring out how. I was told that I needed to add

SSLProtocol All -SSLv2 -SSLv3

To my ssl config file but I'm not sure where that is.

I see a

C:\xampp\apache\conf\extra\httpd-ssl.conf

but from the research I've done heard that I'm looking for a ssl.conf file which doesn't seem to exist.

Any ideas?

Edit also, from the tutorials I was reading, I'm still not sure where in the config file I'd place the SSLProtocol All -SSLv2 -SSLv3 if I was able to find the config file.


回答1:


Had to figure this out myself and too like 30 minutes of Googling to figure it out. Just thought I'd answer it and leave this here for anyone else who comes by and looks at it.

xampp > apache > conf > extra > httpd-ssl.conf

Just add

SSLProtocol All -SSLv2 -SSLv3

right below

Listen 443

and then save and restart. Afterwards, goto http://poodlebleed.com/ and enter your domain and port to make sure that you are now good.

Hope this helps!



来源:https://stackoverflow.com/questions/26589224/how-to-disable-sslv3-in-apache-on-windows-installed-by-xampp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!