Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

is it possible to remove "Google Frontend" from google app engine response header?

I would like to know if there is any way to remove the server name(Google Frontend) from the google app engine response header to hide that the app is deployed on GAE.

like image 475
Me Mi Avatar asked Nov 27 '10 00:11

Me Mi


2 Answers

Consider a reverse proxy in front of your GAE app. The DNS will be to your reverse proxy server.

You can mess with the response headers on the way back out.

This starts to break down the killer advantage of GAE - that it "easily scales on googles infrastructure" - but a single nginx server for example will cope with huge traffic.

Once you have outgrown your single reverse proxy - you will probably be attracting money and attention, and no longer be the one worrying about the proxy.

like image 155
danmux Avatar answered Sep 22 '22 07:09

danmux


Nope. DNS also gives you away.

like image 41
Drew Sears Avatar answered Sep 24 '22 07:09

Drew Sears