91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Nginx服務優化的方法

發布時間:2022-03-21 17:16:57 來源:億速云 閱讀:134 作者:iii 欄目:web開發

今天小編給大家分享一下Nginx服務優化的方法的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

Nginx服務優化可以從隱藏版本號、更改用戶與組、配置網頁緩存時間、日志切割、設置連接超時這幾個方面進行優化。

1.隱藏版本號

在生產環境中需要隱藏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

2.修改用戶和組

Nginx運行時進程需要有用戶與組的支持,用以實現對網站文件讀取時進行訪問控制。主進程由root創建,子進程由指定的用戶與組創建。Nginx默認使用nobody用戶賬號與組賬號,一般要修改。

(1)編譯Nginx時指定用戶與組,就是配置nginx時,在./configure后面指定用戶與組的參數。
[[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
(2)修改Nginx配置文件nginx.conf指定用戶與組。
[[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

3.配置網頁緩存時間

當Nginx將網頁數據返回給客戶端后,可設置緩存時間,方便日后進行相同內容請求是直接返回,避免重復請求,加快訪問速度,一般只針對靜態資源進行設置,對動態網頁不用設置緩存時間。 操作步驟如下所示:

(1)以圖片作為緩存對象,將game.jpg放到Nginx的網站目錄下。
[[email protected] ~]# cd /usr/local/nginx/html/    #Nginx的網站目錄 [[email protected] html]# ls 50x.html  error.png  game.jpg  index.html  test.html
(2)訪問http://172.16.10.10/game.jpg, 再用Fidder工具抓包,查看響應報文,沒有圖片的緩存信息。

Nginx服務優化的方法

(3)修改配置文件,在新的location段加入expire參數,指定緩存時間,1d表示一天。
[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf     location ~\.(gif|jpg|jepg|png|bmp|ico)$ {    #加入新的location         root html;         expires 1d;     #指定緩存時間         }
(4)重啟nginx服務,訪問網址抓包,響應報文中含有Expire參數,表示緩存的時間。
[email protected] ~]# service nginx restart

[

Nginx服務優化的方法

以上就是“Nginx服務優化的方法”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

祁门县| 南靖县| 琼结县| 介休市| 瓦房店市| 勃利县| 青海省| 兰州市| 墨竹工卡县| 进贤县| 阿拉尔市| 泰宁县| 两当县| 蛟河市| 绥宁县| 乐安县| 阿勒泰市| 太仓市| 福贡县| 东城区| 连城县| 梧州市| 弥渡县| 黑水县| 海丰县| 定结县| 沐川县| 米脂县| 东源县| 惠来县| 会昌县| 常熟市| 青海省| 隆安县| 宿州市| 鹤庆县| 五莲县| 浮山县| 贵港市| 抚宁县| 灵璧县|