首頁  >  文章  >  運維  >  怎麼安裝並調優Nginx

怎麼安裝並調優Nginx

WBOY
WBOY轉載
2023-05-20 09:55:201343瀏覽


怎麼安裝並調優Nginx

Nginx編譯前的最佳化

[root@linuxprobe ~]# wget http://nginx.org/download/nginx-1.10.1.tar.gz[root@linuxprobe ~]# tar xvf nginx-1.10.1.tar.gz -C /usr/local/src/[root@linuxprobe ~]# cd /usr/local/src/nginx-1.10.1/

編譯前的最佳化主要是用來修改程式名稱等等,例如:

[root@linuxprobe nginx-1.10.1]# curl -I http://www.baidu.com……
Server: bfe/1.0.8.14
……
[root@linuxprobe nginx-1.10.1]# curl -I http://www.sina.com.cn……
Server: nginx
……
[root@linuxprobe nginx-1.10.1]# curl -I https://www.linuxprobe.comHTTP/1.1 200 OK
Server: nginx/1.10.1 #我们目标是将nginx更改名字Content-Type: text/html; charset=UTF-8
Connection: keep-alive
X-Powered-By: PHP/5.6.29
Set-Cookie: PHPSESSID=smm0i6u4f9v7bj0gove79ja1g7; path=/
Cache-Control: no-cache
Date: Mon, 07 Seq 2016 06:09:11 GMT
[root@linuxprobe nginx-1.10.1]# vim src/core/nginx.h

目的更改原始碼隱藏軟體名稱和版本號

#define NGINX_VERSION “nginx_stable” #此行修改的是你想要的版本號

#define NGINX_VER “linuxprobe/” NGINX_VERSION #此行修改的是您想修改的軟體名稱

[root@linuxprobe nginx-1.10.1]# vim +49 src/http/ngx_http_header_filter_module.c

修改HTTP頭資訊中的connection字段,防止回顯具體版本號

拓展:通用http頭域

通用頭域包含要求和回應訊息都支援的頭域,通用頭域包含Cache-Control、 Connection、Date、Pragma、Transfer-Encoding、Upgrade、Via。如果通用頭域被擴展,雙方都需要支援此擴展。如果存在不支援的通用頭域,一般會當作實體頭域來處理。有些裝置或軟體能夠取得連線訊息,而有些則不能,如果要完全隱藏,就必須做全面的保密

static char ngx_http_server_string[] = “Server: LinuxprobeWeb” CRLF;

[root@linuxprobe nginx-1.10.1]# vim +29 src/http/ngx_http_special_response.c

定義了http錯誤碼的回傳

有時候我們頁面程式出現錯誤,Nginx會代我們回傳對應的錯誤碼,回顯的時候,會帶上nginx和版本號,我們把他隱藏起來

static u_char ngx_http_error_full_tail[] ="" NGINX_VER "" CRLF"

以上是怎麼安裝並調優Nginx的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除