I've got a pylons setup, using flup with nginx, and url.current()
always returns totally wrong.
I have a route:
map.connect('testpage', '/test', controller='Main', action='test')
And in that controller, I do url.current() and I get /test/test' instead of '/test'. I've tried changing
SCRIPT_NAME` as various posts about using uwsgi suggest, but it makes no difference here.
Any suggestions?