We have the following setup: - A digicert signed SSL cert for https://www.foo.com, which is our production 'version' - A self-signed wildcard cert (free) for https://*.www.foo.com, which we use for all our remote testing (e.g. * = dev, staging, beta, etc) - No cert for local testing, all local requests are to http://
To enable this mix we do two things: 1. Where 'absolute' urls are necessary, we make them protocol relative - i.e. "//www.foo.com/bar" 2. We have some application logic that ensures the right protocol is used where necessary (there isnt much of this, and it's factored out) Between all those things, we dont find it necessary to test SSL/https in a local environment. tom On Tuesday, October 8, 2013 1:17:08 PM UTC-7, Bryce Cutt wrote: > > If you really must do SSL with the SDK you can nginx as a reverse proxy in > front of the GAE SDK and have nginx handle HTTPS and serving the > certificate. > > > On Tuesday, October 8, 2013 8:10:22 AM UTC-7, Chetan Dhembre wrote: >> >> Hi, >> I have created one appplication using google app engine sdk in java. >> And it is handling http request properly. but i unable to handle https >> request. I tried to install self signed ssl certificate on my local java >> home directory but it does not help me. Any on faced this problem ? how to >> tackle this problem ? please help >> > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
