Can't Use Nginx As Websocket Proxy
Here is my nginx config server { listen 80; server_name _; location / { proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr;
Solution 1:
This worked for me in tomcat. should work with other web applications if you change root
, error_log
, and proxy_pass
and config your own time outs.
server {
listen 80;
listen 443 ssl;
server_name x.y.com;
root /opt/tomcat/webapps/;
error_log /var/logs/nginx/x.y.com.log debug;
ssl_certificate /root/program/ssl/certificate.pem;
ssl_certificate_key /root/program/ssl/certificate.key;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Connection "";
proxy_connect_timeout 4000s;
proxy_read_timeout 4000s;
#proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
#proxy_set_header X-Forwarded-Proto $proxy_x_forwarded_proto;
proxy_pass http://127.0.0.1:8080/;
}
Also added this to my http config
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
Post a Comment for "Can't Use Nginx As Websocket Proxy"