Skip to content

Instantly share code, notes, and snippets.

@psujit775
Created April 7, 2022 18:07
Show Gist options
  • Save psujit775/cc1b33ad93d269af48845cd6e6062548 to your computer and use it in GitHub Desktop.
Save psujit775/cc1b33ad93d269af48845cd6e6062548 to your computer and use it in GitHub Desktop.
nginx conf for mqtt websocket
upstream websocket {
server localhost:9001;
}
server {
server_name mqtt.sujitpatel.in; #change accordingly
location / {
proxy_pass http://websocket;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment