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

2

11

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.

Dyadic answered 27/11, 2010 at 0:22 Comment(4)
Why do you want to hide this fact?Contravention
@unforgettableid Why not?Dyadic
I am also Looking For same As Per Google Documents we can remove Server header. Check this link cloud.google.com/appengine/docs/standard/php/… But Not Getting How to remove Server header.Paton
GAE java documentation link cloud.google.com/appengine/docs/standard/java/…Paton
T
8

Nope. DNS also gives you away.

Talca answered 27/11, 2010 at 1:43 Comment(2)
Check this Link cloud.google.com/appengine/docs/standard/java/…Paton
Is it possible to overwrite any headers? I have an error is the Content Security Policy header.. :(Hysterectomy
U
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.

Uric answered 28/11, 2010 at 19:24 Comment(0)
T
8

Nope. DNS also gives you away.

Talca answered 27/11, 2010 at 1:43 Comment(2)
Check this Link cloud.google.com/appengine/docs/standard/java/…Paton
Is it possible to overwrite any headers? I have an error is the Content Security Policy header.. :(Hysterectomy

© 2022 - 2024 — McMap. All rights reserved.