Is there a way to redirect HTTPS requests to HTTP by adding a rule in the domain\'s vhost file?
The only simple rule is already explained on the post above me:
server { listen ip:443; server_name www.example.com; rewrite ^(.*) http://$host$1 permanent; }