Apache only for redirecting from 80 to 8080 is a bit of an overkill (and a lot 
of unnecessary configurations).
A simpler option is to use iptables to direct traffic from 80 to 8080.
For Debian/Ubuntu this would look like
[code]apt-get install iptables-persistent
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 8080
iptables-save > /etc/iptables/rules.v4 
[/code]

-- 
Context is everything: 
http://forum.magnolia-cms.com/forum/thread.html?threadId=d2f04346-8fbf-442b-995d-66201ffcf04a


----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------

Reply via email to