There's an option to hide the version so it will display only nginx, but is there a way to hide that too so it will not show anything or change it?
|
1
|
|||
|
|
|
Like Apache, this is a quick edit to the source and recompile. From Calomel.org:
|
||
|
|
|
|
The only way is to modify the file src/http/ngx_http_header_filter_module.c . I changed nginx on line 48 to a different string. What you can do in the nginx config file is to set *server_tokens* to off. This will prevent nginx from printing the version number. To check things out, try curl -I http://vurbu.com/ | grep Server It should return
|
||
|
|
|
|
Are you asking about the Server header value in the response? You can try changing that with an add_header directive, but I'm not sure if it'll work. http://wiki.codemongers.com/NginxHttpHeadersModule |
||
|
