Hide X-Powered-By (nginx)

后端 未结 7 1285
遇见更好的自我
遇见更好的自我 2020-12-24 05:39

So is there any way to hide X-Powered-By on Nginx?

相关标签:
7条回答
  • 2020-12-24 06:03

    Try to use the more_clear_headers directive from the nginx's HttpHeadersMoreModule which can allow you to declare:

    more_clear_headers 'X-Powered-By';
    

    which should do just what you want.

    0 讨论(0)
提交回复
热议问题