Project

General

Profile

[newbie] How do I stop ssl?

Added by evaggelos over 5 years ago

My virtual.conf shows the following:

$SERVER["socket"] == ":443" {
protocoll = "https://"
ssl.engine = "enable"
ssl.pemfile = "/etc/ssl/private/notsure.pem"
ssl.ca-file = "/etc/ssl/private/gd_bundle-g2-g1.crt"
ssl.dh-file = "/etc/ssl/private/dhparam.pem"
ssl.ec-curve = "secp384r1"
ssl.cipher-list = "EECDH+AESGCM:EDH+AESGCM:AES128+EECDH:AES128+EDH"
ssl.use-sslv2 = "disable"
ssl.use-sslv3 = "disable"

I tried changing

ssl.engine = "enable"

to

ssl.engine = "disable"

but that didn't work.

I also tried redirecting the traffic to http, but that didn't work either:

$HTTP["host"] == "domain" {
url.redirect = (".*" => "http://domain$0")
}

Thanks