Nginx反向代理websocket設定實例

不言
發布: 2023-03-25 16:56:01
原創
2826 人瀏覽過

這篇文章主要介紹了Nginx反向代理websocket配置實例​​,本文是專案需求配置成功後的總結,需要的朋友可以參考下

最近有一個需求,就是需要使用nginx 反向代理websocket,經過查找一番資料,目前已經測試通過,本文只做一個記錄

##複製代碼 代碼如下:

注: 看官方文档说 Nginx 在 1.3 以后的版本才支持 websocket 反向代理,所以要想使用支持 websocket 的功能,必须升级到 1.3 以后的版本,
因此我这边是下载的 Tengine 的最新版本测试的
登入後複製

##1.下載tengine最近的原始碼

複製程式碼

程式碼如下:

wget http://tengine.taobao.org/download/tengine-2.0.3.tar.gz
登入後複製

2.安裝基礎的依賴

套件

複製程式碼

程式碼如下:

yum -y install pcre*
yum -y install zlib*
yum -y install openssl*
登入後複製

3.解壓縮編譯安裝

複製程式碼

程式碼如下:

tar -zxvf tengine-2.0.3.tar.gz cd tengine-2.0.3 ./configure --prefix=安装目录 make sudo make install
登入後複製

nginx.conf 的設定如下:

#複製程式碼

程式碼如下:

user apps apps;
worker_processes  4; # 这个由于我是用的虚拟机,所以配置的 4 ,另外 tengine 可以自动根据CPU数目设置进程个数和绑定CPU亲缘性
# worker_processes auto
# worker_cpu_affinity auto
error_log  logs/error.log;
pid        logs/nginx.pid;
#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 65535;
events {
    use epoll;
    worker_connections  65535;
}
# load modules compiled as Dynamic Shared Object (DSO)
#
#dso {
#    load ngx_http_fastcgi_module.so;
#    load ngx_http_rewrite_module.so;
#}
http {
    include       mime.types;
    default_type  application/octet-stream;
    server_names_hash_bucket_size 128;
    client_header_buffer_size 4k;
    large_client_header_buffers 4 32k;
    client_max_body_size 80m;
    sendfile on;
    tcp_nopush     on;
    client_body_timeout  5;
    client_header_timeout 5;
    keepalive_timeout  5;
    send_timeout       5;
    open_file_cache max=65535 inactive=20s;
    open_file_cache_valid 30s;
    open_file_cache_min_uses 1;
    tcp_nodelay on;
    fastcgi_connect_timeout 300;
    fastcgi_send_timeout 300;
    fastcgi_read_timeout 300;
    fastcgi_buffer_size 64k;
    fastcgi_buffers 4 64k;
    fastcgi_busy_buffers_size 128k;
    fastcgi_temp_file_write_size 128k;
    client_body_buffer_size  512k;
    proxy_connect_timeout    5;
    proxy_read_timeout       60;
    proxy_send_timeout       5;
    proxy_buffer_size        16k;
    proxy_buffers            4 64k;
    proxy_busy_buffers_size 128k;
    proxy_temp_file_write_size 128k;
    gzip on;
    gzip_min_length  1k;
    gzip_buffers     4 16k;
    gzip_http_version 1.0;
    gzip_comp_level 2;
    gzip_types       text/plain application/x-javascript text/css application/xml;
    gzip_vary on;
    proxy_temp_path   /dev/shm/temp;
    proxy_cache_path  /dev/shm/cache levels=2:2:2   keys_zone=cache_go:200m inactive=5d max_size=7g;
    log_format log_access  '$remote_addr - $remote_user [$time_local] "$request" "$request_time" "$upstream_response_time"'
              '$status $body_bytes_sent "$http_referer" '
              '"$http_user_agent" $http_x_forwarded_for $host $hostname' ;
    #websocket 需要加下这个
    map $http_upgrade $connection_upgrade {
        default upgrade;
        ''      close;
    }
    include /home/apps/tengine/conf/test.com;
}
登入後複製

#test. com 的設定檔內容:

複製程式碼

程式碼如下:

upstream test.com {
   server 192.168.1.5:9000;
}
server {
    listen       80;
    server_name  test.com;
    #charset koi8-r;
    #access_log  logs/host.access.log  main;
    location  ^~  /websocket {
        proxy_pass http://test.com;
        proxy_redirect    off;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }
}
登入後複製

解析map 指令

上面nginx .conf 設定中的map $http_upgrade $connection_upgrade 的作用,參考http://www.ttlsa.com/nginx/using-nginx-map-method/

#此作用主要是根據客戶端請求中$ http_upgrade 的值,來建構改變$connection_upgrade 的值,也就是根據變數$http_upgrade 的值建立新的變數$connection_upgrade,所建立的規則就是{} 裡面的東西,請見配置:

##複製程式碼

程式碼如下:

map $http_upgrade $connection_upgrade {
        default upgrade;
        ''      close;
    }
登入後複製
其中的規則沒有做匹配,因此使用預設的,即$connection_upgrade 的值會一直是upgrade。然後如果 $http_upgrade為空字串的話,那值會是 close。個人的理解!

相關推薦:

Nginx和php安裝及設定六之Nginx反向代理與負載平衡部署指南

##nginx反向代理機制解決前端跨域問題

以上是Nginx反向代理websocket設定實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!