Hi, how can I redirect HTTPS requests to HTTP?

https://www.domain.com => http://www.domain.com

A simple iptables port redirection

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 443 -j REDIRECT
--to-port 80

allow client connections, but drop request.

How Can I solve this?

-- 
Openclose.it - Idee per il software libero
http://www.openclose.it


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to