Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

https for localhost:8080

I am trying to develop a facebook app written in Python running on Google App Engine, so i need to make my http://localhost:8080 to https://localhost:8080 since facebook is asking for a Secure Canvas URL how can i make https in localhost:8080 ?

like image 680
anand Avatar asked May 17 '11 10:05

anand


1 Answers

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.

like image 75
Drew Sears Avatar answered Sep 28 '22 03:09

Drew Sears