Hello everyone, I am Xiao Jiang. The previous article talked about what the WebSocket protocol is. Here we will review it and talk about how to use nginx to proxy WebSocket. WebSocket is a new protocol under HTML5. It realizes full-duplex communication between browser and server, which can better save server resources and bandwidth and achieve the purpose of real-time communication. It transmits data through an established TCP connection like HTTP, but the biggest difference between it and HTTP is:
Compared with HTTP protocol, WebSocket protocol can communicate multiple times after successful handshake until the connection is closed. However, the handshake in WebSocket is compatible with the handshake in HTTP. It uses the Upgrade protocol header in HTTP to upgrade the connection from HTTP to WebSocket. This makes it easier for WebSocket programs to use existing infrastructure. Most current browsers support WebSocket. In an actual production environment, multiple WebSocket servers are required to have high performance and high availability, so the WebSocket protocol requires a load balancing layer. Nginx supports WebSocket since version 1.3. It can act as a reverse proxy and do load balancing for WebSocket programs. The WebSocket protocol is different from the HTTP protocol, but the WebSocket handshake is compatible with HTTP, using the HTTP upgrade tool to upgrade the connection from HTTP to WebSocket. This allows WebSocket applications to fit more easily into existing infrastructure. For example, WebSocket applications can use standard HTTP ports 80 and 443, allowing existing firewall rules to be used. WebSocket applications can maintain long-running connections between the client and the server, thereby facilitating the development of real-time applications. The HTTP Upgrade mechanism for upgrading connections from HTTP to WebSocket uses the Upgrade and Connection headers. Reverse proxy servers face some challenges in supporting WebSocket. One is that WebSocket is a hop-by-hop protocol, so when the proxy server intercepts the client's upgrade request, it needs to send its own upgrade request to the backend server, including the appropriate headers. In addition, because WebSocket connections are long-lived, as opposed to the typical short-lived connections used by HTTP, reverse proxies need to allow these connections to remain open, rather than closing them because they appear to be idle. To allow tunneling between the client and the backend server, Nginx supports WebSocket. For NGINX to send the upgrade request from the client to the backend server, the Upgrade and Connection headers must be set explicitly. The configuration method for Nginx to enable WebSocket proxy is as follows:(1) Edit nginx.conf and add the following configuration in the http area: map $http_upgrade $connection_upgrade { 「Explain the role of the map instruction:」 Its role is mainly to construct and change the value of connection_upgrade according to the value in the client request, that is, to create a new variable connection_upgrade according to the value of the variable, and the rule created is what is in {}. The rule is not matched, so the default one is used, that is, if http_upgrade is an empty string, then the value is close. (2) Edit the configuration file of the virtual host under vhosts and add the following content to the location matching configuration: proxy_http_version 1.1 ; (3) A complete example is as follows: upstream sre_backend { The above is the one-way TLS authentication method of WebSocket through nginx proxy. 「Warm reminder:」 By default, if the proxy server does not transmit any data within 60 seconds, the connection will be closed. This timeout can be increased using the proxy_read_timeout directive. In summary:「WebSocket and Http similarities」:
「Differences between WebSocket and Http」:
「WebSocket and Http connection」 When WebSocket establishes a handshake, data is transmitted via HTTP. However, after the establishment, the HTTP protocol is not required for actual transmission. In WebSocket, the server and browser only need to perform a handshake via the HTTP protocol, and then establish a separate TCP communication channel for data transmission. The process of WebSocket connection is: (1) The client initiates an http request, and after three handshakes, a TCP connection is established; the http request contains information such as the version number supported by WebSocket, such as Upgrade, Connection, WebSocket-Version, etc.; 2) After the server receives the handshake request from the client, it also uses the HTTP protocol to feedback data; 3) After the client receives the message of successful connection, it starts full-duplex communication with the help of the TCP transmission channel. How to solve the frequent interruption of Nginx proxy webSocket (i.e. how to maintain a long connection)The problem lies in the configuration of nginx, and several timeout settings need to be configured. As follows: http { 「Explain the above timeout configuration」The default value of the proxy_read_timeout parameter is 60 seconds. This directive sets the read timeout with the proxy server. It determines how long nginx will wait to get a response to the request. This time is not the time to get the entire response, but the time for two reading operations. That is, the maximum time the server will wait for you, which means that when you use nginx to forward webSocket, if there is no communication within 60 seconds, it will still be disconnected, so you can set it according to your needs. For example, if I set it for 5 minutes, then if I have communication within 5 minutes, or if I have a heartbeat within 5 minutes, the connection can be maintained. So this time is adjusted according to your business needs. The default value of the proxy_send_timeout parameter is 60s, which sets the timeout for sending requests to the upstream server. The timeout is not set for the entire sending period, but for the period between two write operations. If the upstream does not receive new data after the timeout, nginx will close the connection. 「The relationship between WebSocket and Socket:」Socket is not actually a protocol, but a layer abstracted for the convenience of using TCP or UDP. It is a set of interfaces between the application layer and the transmission control layer. When two hosts communicate, they must connect through Socket, and Socket uses TCP/IP protocol to establish TCP connection. TCP connection is more dependent on the underlying IP protocol, and IP protocol connection depends on lower layers such as the link layer. WebSocket, like HTTP, is a typical application layer protocol. |
<<: Telecommunication Research Institute report shows that 5G indoor coverage is only 60%
>>: I’ve explained the QUIC protocol in ten minutes. Do you understand it?
10gbiz has released a current promotion, with 40%...
VirMach has launched the SUMMER HOSTSALE promotio...
Starting with Bitcoin, the decentralized and data...
In the modern Internet era, the highest productiv...
The tribe shared news about FantomNetworks twice ...
[[177139]] According to foreign media reports, Fa...
introduce DDoS is the abbreviation of Distributed...
ESG is an acronym for Environment, Society and Go...
Alpha Wireless partners with smart waste company ...
In August, the three telecom operators successive...
Cloud computing technology is creating a new and ...
A group friend asked about the information about ...
[51CTO.com original article] "It's time ...
Is there anyone who needs a Spanish VPS? GINERNET...
[[442039]] What is Voice over Internet Protocol (...