亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Nginx反向代理怎么實現支持長連接

發布時間:2022-04-29 14:18:38 來源:億速云 閱讀:572 作者:iii 欄目:大數據

今天小編給大家分享一下Nginx反向代理怎么實現支持長連接的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

前言

nginx upstream與后端的連接默認為短連接,通過http/1.0向后端發起連接,并把請求的"connection" header設為"close"。nginx與前端的連接默認為長連接,一個用戶跟nginx建立連接之后,通過這個長連接發送多個請求。如果nginx只是作為reverse proxy的話,可能一個用戶連接就需要多個向后端的短連接。如果后端的服務器(源站或是緩存服務器)處理并發連接能力不強的話,就可能導致瓶頸的出現。

nginx目前的upstream連接建立和獲取的機制如下圖。nginx會在一開始創建connection pool(進程間不共享,可以避免鎖),提供給所有向前/后的連接。

Nginx反向代理怎么實現支持長連接

如果要實現upstream長連接,則每個進程需要另外一個connection pool,里面都是長連接。一旦與后端服務器建立連接,則在當前請求連接結束之后不會立即關閉連接,而是把用完的連接保存在一個keepalive connection pool里面,以后每次需要建立向后連接的時候,只需要從這個連接池里面找,如果找到合適的連接的話,就可以直接來用這個連接,不需要重新創建socket或者發起connect()。這樣既省下建立連接時三次握手的時間消耗,又可以避免tcp連接的slow start。如果在keepalive連接池找不到合適的連接,那就按照原來的步驟重新建立連接。假設連接查找時間可以忽略不計,那么這種方法肯定是有益而無害的(當然,需要少量額外的內存)。

Nginx反向代理怎么實現支持長連接

具體如何來設計這個keepalive connection pool,不同人有不同的選擇。比如nginx目前的第三方模塊upstream keepalive(作者maxim dounin)使用了一個queue來做。因為upstream的服務器很可能是多個,所以可能當保持的連接數多的時候,查找的時間可能會較長。可以給每個upstream服務器都分配一個pool(queue),縮短查找時間。但是總體來說內存操作很快,影響不會很大。upstream keepalive模塊目前只支持memcached,但是可以重用其代碼來達到對http upstream的長連接。由于nginx作者之前沒有考慮upstream的長連接,所以在設計上要把http upstream keepalive模塊化可能比較難,只能通過手動修改代碼來做到。

一個完整的讓upstream支持長連接的配置示例如下:

#user nobody; 
worker_processes 1; 
 
#error_log logs/error.log; 
#error_log logs/error.log notice; 
#error_log logs/error.log info; 
 
#pid logs/nginx.pid; 
 
 
events { 
 worker_connections 1024; 
} 
 
 
http { 
 include mime.types; 
 default_type application/octet-stream; 
 
 #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' 
 #   '$status $body_bytes_sent "$http_referer" ' 
 #   '"$http_user_agent" "$http_x_forwarded_for"'; 
 
 #access_log logs/access.log main; 
 
 client_max_body_size 20m; 
 client_header_buffer_size 32k; 
 large_client_header_buffers 4 32k; 
 
 sendfile on; 
 #tcp_nopush on; 
 
 #keepalive_timeout 0; 
 keepalive_timeout 65; 
 
 #gzip on; 
 
 proxy_buffer_size 64k; 
 proxy_buffers 32 32k; 
 proxy_busy_buffers_size 128k; 
 
 upstream aaucfg_backend { 
 server 127.0.0.1:97; 
 keepalive 16; 
 } 
 
 upstream hfc_backend { 
 server 127.0.0.1:8090; 
 keepalive 16; 
 } 
 
 upstream manager_backend { 
 server 127.0.0.1:8095; 
 keepalive 16; 
 } 
 
 server { 
 listen 80; 
 server_name localhost; 
 
 #charset koi8-r; 
 
 #access_log logs/host.access.log main; 
 
 root html/tools; 
 index index.html index.htm index.php; 
  
 proxy_http_version 1.1; 
 proxy_set_header connection ""; 
 proxy_set_header host $host; 
 proxy_set_header x-real_ip $remote_addr; 
 proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; 
  
 location / { 
  if (!-e $request_filename) { 
  #rewrite ^/(.*)$ /index.php/$1 last; 
  #break; 
  rewrite ^/(.*)$ /index.php/$1; 
  } 
 } 
  
 location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ { 
  expires max; 
  log_not_found off; 
 } 
  
 location ^~ /aaucfg/ { 
  #proxy_pass http://$remote_addr:97$request_uri; 
  proxy_pass http://aaucfg_backend; 
 } 
  
 location ^~ /hfc/ { 
  #proxy_pass http://$remote_addr:8090$request_uri; 
  proxy_pass http://hfc_backend; 
 } 
  
 location ^~ /manager/ { 
  #proxy_pass http://$remote_addr:8095$request_uri; 
  proxy_pass http://manager_backend; 
 } 
  
 #error_page 404  /404.html; 
 
 # redirect server error pages to the static page /50x.html 
 # 
 error_page 500 502 503 504 /50x.html; 
 location = /50x.html { 
  root html; 
 } 
 
 # proxy the php scripts to apache listening on 127.0.0.1:80 
 # 
 #location ~ \.php$ { 
 # proxy_pass http://127.0.0.1; 
 #} 
 
 # pass the php scripts to fastcgi server listening on 127.0.0.1:9000 
 # 
 #location ~ \.php$ { 
 # fastcgi_pass 127.0.0.1:9000; 
 # fastcgi_index index.php; 
 # fastcgi_param script_filename $document_root$fastcgi_script_name; 
 # include fastcgi_params; 
 #} 
  
 location ~ .php 
 { 
  fastcgi_pass 127.0.0.1:9000; 
  fastcgi_index index.php; 
  fastcgi_param script_filename $document_root$fastcgi_script_name; 
  include fastcgi.conf; 
  include fastcgi_params; 
 
  #定義變量 $path_info ,用于存放pathinfo信息 
  set $path_info ""; 
  #定義變量 $real_script_name,用于存放真實地址 
  set $real_script_name $fastcgi_script_name; 
  #如果地址與引號內的正則表達式匹配 
  if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") { 
   #將文件地址賦值給變量 $real_script_name 
   set $real_script_name $1; 
   #將文件地址后的參數賦值給變量 $path_info 
   set $path_info $2; 
  } 
  #配置fastcgi的一些參數 
  fastcgi_param script_filename $document_root$real_script_name; 
  fastcgi_param script_name $real_script_name; 
  fastcgi_param path_info $path_info; 
 } 
 
 # deny access to .htaccess files, if apache's document root 
 # concurs with nginx's one 
 # 
 #location ~ /\.ht { 
 # deny all; 
 #} 
 } 
 
 
 # another virtual host using mix of ip-, name-, and port-based configuration 
 # 
 #server { 
 # listen 8000; 
 # listen somename:8080; 
 # server_name somename alias another.alias; 
 
 # location / { 
 # root html; 
 # index index.html index.htm; 
 # } 
 #} 
 
 
 # https server 
 # 
 #server { 
 # listen 443 ssl; 
 # server_name localhost; 
 
 # ssl_certificate cert.pem; 
 # ssl_certificate_key cert.key; 
 
 # ssl_session_cache shared:ssl:1m; 
 # ssl_session_timeout 5m; 
 
 # ssl_ciphers high:!anull:!md5; 
 # ssl_prefer_server_ciphers on; 
 
 # location / { 
 # root html; 
 # index index.html index.htm; 
 # } 
 #} 
 
}

以上就是“Nginx反向代理怎么實現支持長連接”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

岢岚县| 丹巴县| 镇安县| 体育| 内丘县| 辰溪县| 赣榆县| 阳西县| 罗源县| 开江县| 广灵县| 阳信县| 沐川县| 洛扎县| 长宁区| 林周县| 松溪县| 靖远县| 岳池县| 雷州市| 淅川县| 神木县| 金塔县| 饶平县| 休宁县| 甘孜| 岑溪市| 澄江县| 青神县| 焦作市| 辽源市| 高雄县| 隆安县| 清河县| 麻江县| 依安县| 香格里拉县| 宁津县| 河北区| 尉氏县| 孟村|