Is there a way to redirect HTTPS requests to HTTP by adding a rule in the domain\'s vhost file?
This helped me:
server { listen 443; server_name server.org www.server.org; rewrite ^ http://$server_name$request_uri? permanent; }