Https for localhost:8080?

Up vote 9 down vote favorite 2 share g+ share fb share tw.

Python facebook google-app-engine google link|improve this question asked May 17 '11 at 10:26anand1067 43% accept rate.

From the docs: The development web server does not support HTTPS connections. It ignores the secure parameter, so paths intended for use with HTTPS can be tested using regular HTTP connections to the development web server. You can star issue 960 to request that support be added.

Until then, my advice would be to run Apache or lighttpd as a proxy to the development server, and enable HTTPS on the front-end service only.

I use stunnel to proxy my https request on localserver. I run my localserver on 127.0.0.1:8000 and have configured stunnel with https accept = 8001 connect = 8000 so it responds to https on 127.0.0.1:8001. I have configured the FB app with the above 2 ips.

Works nicely. For windows, you can find the installer at here You need to configure 2 facebook apps. 1 for the production.

1 for the local. Use the host ip to return different APP_ID for different apps on local and production.

Have a look here . I think this will answer your question Add this to your app. Yaml handlers: - url: #url script: #script login: required secure: always more reference here.

I was looking at this, but it will work if you have not activated secure browsing in facebook, if you have activated secure browsing then it will show "Please Update Your Secure Canvas URL" so I need to give an https url if I simply give localhost:8080 , it will show SSL error – anand May 17 '11 at 10:43 @anand, Can you check that – Abdul Kader May 17 '11 at 11:04.

I highly recommend deploying with nginx and gunicorn. Super-easy, and you can just make a self-signed cert to use locally. Much faster and easier than Apache.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions