On Thu, Dec 9, 2010 at 12:34 AM, Eric Rasmussen <[email protected]> wrote: > Hi everyone, > > I've been reading documentation and discussions like crazy but still can't > find an adequate solution to this. At this point I've probably gone off in > the wrong direction and am missing a simpler solution, so if anyone has any > ideas it would be of great benefit to my future mental health. Is anyone > using repoze.what on https, and if so, how do you get around redirects to > http links?
I saw this but i haven't used repoze.who/what and I run my webapp as localhost HTTP with mod_proxy, so I don't know. Maybe nobody else has tried your combination. A workaround may be to use absolute URLs for login and logout. login_handler='https://mydomain.com/account/login_handler', logout_handler='https://mydomain.com/account/logout' Otherwise, you'd have to figure out which package is generating the URLs and how it's doing it. With url() you may have to pass 'protocol=https', but if it's in middleware it may not be using url(). -- Mike Orr <[email protected]> -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
