Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GAE dev_appserver.py over HTTPS

Has anyone cracked how to get HTTPS working on the dev_appserver.py? I need it for Facebook canvas app testing. I've had a search of the docs and nothing suggests there's a way to do it (sticking 'secure' in the app.yaml doesn't nothing locally).

I was think there may be a way to proxy it, but has anyone got any experience of this?

like image 379
Ahmed Nuaman Avatar asked Jan 13 '12 10:01

Ahmed Nuaman


1 Answers

The dev_appserver doesn't support HTTPS. The only practical way to do this is to set up a reverse proxy in front of your app - such as with nginx or Apache - and have it proxy SSL traffic to your app.

like image 76
Nick Johnson Avatar answered Oct 13 '22 18:10

Nick Johnson