WebSocket using Nginx as a reverse proxy

Source: Internet
Author: User
Tags nginx reverse proxy

Need Nginx as WebSocket reverse proxy, no nginx reverse proxy time no problem, through Nginx reverse proxy will report 400 error, check background debugging information:

Tornado.general–debug–can "Upgrade" only to "WebSocket".

By analyzing the original is required Nginx to do the following configuration:

Upstream Wsbackend {server 127.0.0.1:10003;} server {listen 3000;server_name localhost; #charset koi8-r; #access_log logs/host.access.log main;# location/{# root HTML ; # index index.html index.htm;#}location/{proxy_pass http://wsbackend;proxy_http_version 1.1;proxy_set_header Upgrade $http _upgrade;proxy_set_header Connection "Upgrade";}}

If you have a multi-tier reverse proxy, you need to add that information to each layer!

WebSocket using Nginx as a reverse proxy

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.