summarylogtreecommitdiffstats
path: root/ngx_http_core_module.c.patch
blob: 164c3d9000f259156e76abb759a07e22cdfd83af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- nginx-1.26.0/src/http/ngx_http_core_module.c	2024-04-23 11:04:32.000000000 -0300
+++ nginx-1.26.0_patched/src/http/ngx_http_core_module.c	2024-04-23 18:51:56.531096754 -0300
@@ -124,7 +124,6 @@
 static ngx_conf_enum_t  ngx_http_core_server_tokens[] = {
     { ngx_string("off"), NGX_HTTP_SERVER_TOKENS_OFF },
     { ngx_string("on"), NGX_HTTP_SERVER_TOKENS_ON },
-    { ngx_string("build"), NGX_HTTP_SERVER_TOKENS_BUILD },
     { ngx_null_string, 0 }
 };
 
@@ -3899,7 +3898,7 @@
     ngx_conf_merge_value(conf->etag, prev->etag, 1);
 
     ngx_conf_merge_uint_value(conf->server_tokens, prev->server_tokens,
-                              NGX_HTTP_SERVER_TOKENS_ON);
+                              NGX_HTTP_SERVER_TOKENS_OFF);
 
     ngx_conf_merge_ptr_value(conf->open_file_cache,
                               prev->open_file_cache, NULL);