What I'd imagine happening is this:
1. You're connecting on http, not https so...
2. The key isn't in the session, which will (correctly) raise an issue.
If you're doing https, I think you need to put Pyramid behind something
(i'm not sure if pserve can handle https or not).
I run nginx on my ma
Thank you very much for the help. I've fleshed out the program a bit more,
running a localhost on my machine, and setting the secure flag to True is
raising a couple of issues. First, I run into a KeyError while pulling data
from the session, which does not happen while secure is set to false. A
just circling back; it was a drop-in fix.
the only weird thing is that keys are saved in this format:
beaker:{session_id}:session
i would have expected
beaker:session:{session_id}
so to make things more standard, I just saved into it's own database id.
--
You received this message be