nginx調優

nginx安裝html

1.安裝依賴庫nginx

yum -y install make gcc gcc-c++ glibc glibc-devel lsof   pcre pcre-devel  zlib zlib-devel  openssl openssl--develc++

yum install pcre-devel pcre  zlib-devel zlib openssl-devel -y(也能夠用這個依賴庫)vim

2.下載源碼包curl

3.解壓  編譯 安裝ide

4. 啓動測試

爲何要屏蔽nginx版本信息?url

答:由於***能夠掃描出nginx版本信息,能夠查看對應版本信息的漏洞,而後對相應的版本信息進行***。spa

如何查看nginx版本信息?server

答:curl -I +域名或者IP

[root@localhost nginx]# curl -I 127.0.0.1

HTTP/1.1 200 OK

Server: nginx/1.10.3     ###看出我使用的nginx是1.10版本的

Date: Tue, 25 Jul 2017 09:03:15 GMT

Content-Type: text/html

Content-Length: 612

Last-Modified: Tue, 25 Jul 2017 08:55:50 GMT

Connection: keep-alive

ETag: "59770796-264"

Accept-Ranges: bytes

修改nginx源碼文件,而後從新編譯安裝,達到隱藏效果

5.修改源碼文件

cd /root/nginx-1.10.3

第一個配置文件:vim src/core/nginx.h

1)#define NGINX_VERSION      "1.10.3"

改爲

#define NGINX_VERSION      "8.8.8.8"  ###修改你想要的版本號

2)define NGINX_VER          "nginx/" NGINX_VERSION###修改你想要的軟件名稱

改爲

define NGINX_VER          "test/" NGINX_VERSION

第二個配置文件:vim src/http/ngx_http_header_filter_module.c

static char ngx_http_server_string[] = "Server: nginx" CRLF;###修改HTTP頭信息中的connection字段,防止回顯具體版本號。

改爲

static char ngx_http_server_string[] = "Server: test" CRLF;

第三個配置文件:vim src/http/ngx_http_special_response.c

"<hr><center>nginx</center>" CRLF###定義了http錯誤碼的返回,當頁面程序出現錯誤,nginx會代咱們返回相應的代碼,回顯的時候,會帶上版本號。(404頁面)

改爲

"<hr><center>test</center>" CRLF

6.因爲改動源碼,咱們須要從新安裝,上面已經講過怎麼安裝這裏不作敘述。


7.測試

[root@localhost nginx-1.10.3]# curl -I 127.0.0.1

HTTP/1.1 200 OK

Server: test/8.8.8.8

Date: Tue, 25 Jul 2017 09:30:19 GMT

Content-Type: text/html

Content-Length: 612

Last-Modified: Tue, 25 Jul 2017 09:29:17 GMT

Connection: keep-alive

ETag: "59770f6d-264"

Accept-Ranges: bytes

404 Not Found


test/8.8.8.8

相關文章
相關標籤/搜索