在Golang net / http中设置服务器软件变量

时间:2014-08-29 00:23:50

标签: apache go

我正在使用ab -c 100 -n 10000 http://{your ip}:8000/对我的应用程序进行基准测试,一切都很好,但是像我一样痴迷,我发现在描述服务器时,它回来了

Server Software:        
Server Hostname:        localhost
Server Port:            1337

Document Path:          /
Document Length:        19 bytes

如何设置服务器软件变量?我不能忍受那个空旷的田野。

1 个答案:

答案 0 :(得分:1)

设置Server标头。请参阅RFC-2616 section 14.38ResponseWriter。标题。

w.Header().Set("Server", "MyServer")