Preface
I have scowered the internet in search of a decent article on enabling mod_proxy on Linux. Damn, make it hard!
==External Links==
* [http://www.devshed.com/c/a/Apache/Getting-Started-with-Apache-2-0-Part-III/ Getting Started with Apache...
Created 28/04/07
{{{
iptables -P INPUT DROP iptables -A INPUT -i ! ${UPLINK} -j ACCEPT
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
#our new rule follows
iptables -A INPUT -p tcp --dport http -m state --state NEW -j ACCEPT
iptables -...
Created 28/04/07
