Is there a way to redirect HTTPS requests to HTTP by adding a rule in the domain\'s vhost file?
location / { if ($scheme = https) { rewrite ^(.*)? http://$http_host$1 permanent; } }