I have tried several mod_rewrite conditions to change all
http to https. It works well when using just the internal server ip’s but
when trying to redirect back through pound it fails. My mod_rewrite script is RewriteEngine
on
RewriteCond %{HTTPS} on
RewriteRule (.*) https://%{SERVER_ADDR}%{REQUEST_URI}
From my access logs it appears to continue to loop. What is
the problem with this syntax for pound?