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

有些话、适合烂在心里 提交于 2020-06-24 22:17:31

问题


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.


回答1:


Nope. DNS also gives you away.




回答2:


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 be probably be attracting money and attention, and no longer be the one worrying about the proxy.



来源:https://stackoverflow.com/questions/4289394/is-it-possible-to-remove-google-frontend-from-google-app-engine-response-heade

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!