We have a satosa instance running as a social-saml gateway: Frontend=saml;
backend=google.
It is behind Apache and accessed by mod_rewrite, essentually:
RewriteRule ^/(.*)$
https://localhost:7445/$1 [P]
This works, but the https seems unnecessary. It would be more efficient to use simple
http for the localhost rewrite.
However, that fails with a "Not destined for me!" in request.py's _verify --
simply because http is not https.
Is there a way to use simple http but avoid the error? Commenting out the "raise
OtherError" works, but I'd rather not have to edit the sources.
Thanks,
Jim Fox
University of Washington