溫馨提示×

溫馨提示×

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

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

怎么對nginx進(jìn)行優(yōu)化

發(fā)布時間:2021-01-25 15:54:18 來源:億速云 閱讀:148 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)怎么對nginx進(jìn)行優(yōu)化,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

一.優(yōu)化Nginx并發(fā)量

[root@proxy ~]# ab -n 2000 -c 2000 http://192.168.4.5/
Benchmarking 192.168.4.5 (be patient)
socket: Too many open files (24)    //提示打開文件數(shù)量過多

修改Nginx配置文件,增加并發(fā)量

[root@proxy ~]# vim /usr/local/nginx/conf/nginx.conf
.. ..
worker_processes 2;     //與CPU核心數(shù)量一致
events {
worker_connections 65535;  //每個worker最大并發(fā)連接數(shù)
use epoll;
}
.. ..
[root@proxy ~]# nginx -s reload

二.優(yōu)化Linux內(nèi)核參數(shù)(最大文件數(shù)量)

[root@proxy ~]# ulimit -a      //查看所有屬性值
[root@proxy ~]# ulimit -Hn 100000    //設(shè)置硬限制(臨時規(guī)則)
[root@proxy ~]# ulimit -Sn 100000    //設(shè)置軟限制(臨時規(guī)則)
[root@proxy ~]# vim /etc/security/limits.conf
 .. ..
*    soft nofile   100000
*    hard nofile   100000
#該配置文件分4列,分別如下:
#用戶或組 硬限制或軟限制 需要限制的項(xiàng)目 限制的值

優(yōu)化后測試服務(wù)器并發(fā)量

[root@proxy ~]# ab -n 2000 -c 2000 http://192.168.4.5/

三.優(yōu)化Nginx數(shù)據(jù)包頭緩存

[root@proxy ~]# cat lnmp_soft/buffer.sh 
#!/bin/bash
URL=http://192.168.4.5/index.html?
for i in {1..5000}
do
 URL=${URL}v$i=$i
done
curl $URL        //經(jīng)過5000次循環(huán)后,生成一個長的URL地址欄
[root@proxy ~]# ./buffer.sh
.. ..
<center><h2>414 Request-URI Too Large</h2></center>  //提示頭部信息過大

修改Nginx配置文件,增加數(shù)據(jù)包頭部緩存大小

[root@proxy ~]# vim /usr/local/nginx/conf/nginx.conf
.. ..
http {
client_header_buffer_size 1k;  //默認(rèn)請求包頭信息的緩存 
large_client_header_buffers 4 4k;  //大請求包頭部信息的緩存?zhèn)€數(shù)與容量
.. ..
}
[root@proxy ~]# nginx -s reload

四.對頁面進(jìn)行壓縮處理

[root@proxy ~]# cat /usr/local/nginx/conf/nginx.conf
http {
.. ..
gzip on;       //開啟壓縮
gzip_min_length 1000;    //小文件不壓縮
gzip_comp_level 4;    //壓縮比率
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
         //對特定文件壓縮,類型參考mime.types
.. ..

五.服務(wù)器內(nèi)存緩存

http { 
open_file_cache   max=2000 inactive=20s;
  open_file_cache_valid 60s;
  open_file_cache_min_uses 5;
  open_file_cache_errors off;
//設(shè)置服務(wù)器最大緩存2000個文件句柄,關(guān)閉20秒內(nèi)無請求的文件句柄
//文件句柄的有效時間是60秒,60秒后過期
//只有訪問次數(shù)超過5次會被緩存
}

六.瀏覽器本地緩存靜態(tài)數(shù)據(jù)

[root@proxy ~]# vim /usr/local/nginx/conf/nginx.conf
server {
  listen  80;
  server_name localhost;
  location / {
   root html;
   index index.html index.htm;
  }
location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ {
expires  30d;   //定義客戶端緩存時間為30天
}
}
[root@proxy ~]# cp /usr/share/backgrounds/day.jpg /usr/local/nginx/html
[root@proxy ~]# nginx -s reload

關(guān)于怎么對nginx進(jìn)行優(yōu)化就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI