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.
Asked
Active
Viewed 1.1k times
11

Mangesh Mandavgane
- 360
- 2
- 19

Me Mi
- 115
- 1
- 1
- 5
-
1Why do you want to hide this fact? – unforgettableidSupportsMonica Oct 13 '15 at 02:29
-
1@unforgettableid Why not? – Me Mi Jan 01 '17 at 17:56
-
I am also Looking For same As Per Google Documents we can remove Server header. Check this link https://cloud.google.com/appengine/docs/standard/php/how-requests-are-handled#headers_removed But Not Getting How to remove Server header. – Mangesh Mandavgane Apr 12 '18 at 10:13
-
GAE java documentation link https://cloud.google.com/appengine/docs/standard/java/how-requests-are-handled#headers_removed – Mangesh Mandavgane Apr 12 '18 at 10:36
2 Answers
9
Nope. DNS also gives you away.

Drew Sears
- 12,812
- 1
- 32
- 41
-
Check this Link https://cloud.google.com/appengine/docs/standard/java/how-requests-are-handled#headers_removed – Mangesh Mandavgane Apr 12 '18 at 10:40
-
Is it possible to overwrite any headers? I have an error is the Content Security Policy header.. :( – dendog Jun 26 '18 at 16:22
9
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.

danmux
- 2,735
- 1
- 25
- 28