您好,登錄后才能下訂單哦!
今天小編給大家分享一下Nginx服務優化的方法的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
在生產環境中需要隱藏Nginx的版本號,以避免泄露Nginx的版本,使×××者不能針對特定版本進行×××。查看Nginx的版本在CentOS中使用命令curl -I http://172.16.10.10/即可。
[[email protected] ~]# curl -I http://172.16.10.10/ HTTP/1.1 200 OK Server: nginx/1.12.0 #Nginx版本信息 Date: Fri, 29 Jun 2018 08:52:27 GMT Content-Type: text/html Content-Length: 483 Last-Modified: Fri, 29 Jun 2018 06:56:20 GMT Connection: keep-alive ETag: "5b35d814-1e3" Accept-Ranges: bytes
隱藏版本號有兩種方式,一種是修改Nginx的源碼文件,指定不顯示版本號,第二種是修改Nginx的主配置文件。
將Nginx的配置文件中的server_tokens選項值設置為off,如沒有該配置項,加上即可。
[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf ........... #省略內容 http { include mime.types; default_type application/octet-stream; server_tokens off; #關閉版本號 ............ #省略內容
[[email protected] ~]# nginx -t #測試配置文件 nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
再次訪問網址,只顯示Nginx,版本號已經隱藏。
[[email protected] ~]# service nginx restart #重新啟動nginx服務 [[email protected] ~]# curl -I http://172.16.10.10/ HTTP/1.1 200 OK Server: nginx #nginx隱藏了版本號 Date: Fri, 29 Jun 2018 09:09:36 GMT Content-Type: text/html Content-Length: 483 Last-Modified: Fri, 29 Jun 2018 06:56:20 GMT Connection: keep-alive ETag: "5b35d814-1e3" Accept-Ranges: bytes
Nginx的源碼文件包含了版本信息,可以隨意設置,然后重新編譯安裝,就會隱藏版本信息。
[[email protected] ~]# vim /opt/nginx-1.12.0/src/core/nginx.h #編輯源碼文件 #define NGINX_VERSION "1.1.1" #修改版本號 #define NGINX_VER "IIS" NGINX_VERSION #修改服務器類型
重新編譯安裝
[[email protected] ~]# cd /opt/nginx-1.12.0/ [[email protected] nginx-1.12.0]#./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_stub_status_module && make && make install
再次訪問網址,只顯示修改之后的版本信息。
[[email protected] nginx-1.12.0]# service nginx restart #重啟nginx服務 [[email protected] nginx-1.12.0]# curl -I http://172.16.10.10/HTTP/1.1 200 OK Server: IIS1.1.1 #nginx的版本信息 Date: Fri, 29 Jun 2018 09:30:09 GMT Content-Type: text/html Content-Length: 483 Last-Modified: Fri, 29 Jun 2018 06:56:20 GMT Connection: keep-alive ETag: "5b35d814-1e3" Accept-Ranges: bytes
Nginx運行時進程需要有用戶與組的支持,用以實現對網站文件讀取時進行訪問控制。主進程由root創建,子進程由指定的用戶與組創建。Nginx默認使用nobody用戶賬號與組賬號,一般要修改。
[[email protected] ~]# cd /opt/nginx-1.12.0/ [[email protected] nginx-1.12.0]#./configure --prefix=/usr/local/nginx --user=nginx #指定用戶名是nginx --group=nginx #指定組名是nginx --with- && make && make install
[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf user nginx nginx; #修改用戶為nginx,組為nginx
重啟nginx查看進程運行情況,主進程由root賬戶創建,子進程由nginx創建。
[[email protected] ~]# ps aux | grep nginx root 14923 0.0 0.0 20540 624 ? Ss 17:30 0:00 nginx: master process /usr/local/nginx/sbin/nginx #主進程由root創建 nginx 14925 0.0 0.1 22984 1412 ? S 17:30 0:00 nginx: worker process #子進程由nginx創建 root 19344 0.0 0.0 112720 984 pts/0 R+ 17:47 0:00 grep --color=auto nginx
當Nginx將網頁數據返回給客戶端后,可設置緩存時間,方便日后進行相同內容請求是直接返回,避免重復請求,加快訪問速度,一般只針對靜態資源進行設置,對動態網頁不用設置緩存時間。 操作步驟如下所示:
[[email protected] ~]# cd /usr/local/nginx/html/ #Nginx的網站目錄 [[email protected] html]# ls 50x.html error.png game.jpg index.html test.html
[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf location ~\.(gif|jpg|jepg|png|bmp|ico)$ { #加入新的location root html; expires 1d; #指定緩存時間 }
[email protected] ~]# service nginx restart
[
以上就是“Nginx服務優化的方法”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。