> You'll need to add another rule in > the OUTPUT chain specifically for loopback traffic: > > iptables -t nat -I OUTPUT -p tcp -d 127.0.0.1 --dport 443 -j REDIRECT > --to-ports 8080
This is definitely the way to go if you're not behind a load balancer/reverse proxy so that clients don't have to include a port number in the URL. That said, you can make it work on a non-standard port by including a port number in the server.name property in cas.properties, e.g.: server.name=https://your.cas.host:8443 M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
