Mobile app version of vmapp.org
Login or Join
Murphy175

: Nginx and Google Appengine Reverse Proxy Security The scenario is that I have a Google compute node running Nginx as a reverse proxy to the google appengine. The appengine is used to service

@Murphy175

Posted in: #GoogleAppEngine #Https #Nginx #Security

The scenario is that I have a Google compute node running Nginx as a reverse proxy to the google appengine. The appengine is used to service REST calls from an single page application (SPA). HTTPS is used to the Nginx front end from the Internet.

Do I also need to make the traffic from the Nginx reverse proxy to the appengine secure by turning on HTTPS on the appengine?

I would like to avoid the overhead of HTTPS between the proxy and the backend. My thinking was that once the traffic has arrived at Nginx encrypted, decrypted in Nginx, and then sent via the reverse proxy inside of Google's infrastructure it would be secure.

Is it safe in this case to not use HTTPS?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Murphy175

1 Comments

Sorted by latest first Latest Oldest Best

 

@Cofer257

It's safe enough if they are in private network or on the same machine. Otherwise your traffic could be intercepted.

Actually with proper configuration ssl overhead would be quite small (big keepalive, reuse connections)

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme