本文首发在 这里
本文关心以下内容
WebSocket proxying
ngx_http_proxy_module
ngx_stream_proxy_module
ngx_http_ssl_module
ngx_stream_ssl_module
配置上下文
- HTTP Context: http, server
- TCP Context: stream, server
经过反向代理获取请求的HOST和客户端IP
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
- TCP 可考虑参考这些(要求不高则客户端携带IP)