metube. Adding missing Nginx config part for WebSocket support.

This commit is contained in:
Alexey Skobkin 2022-03-15 03:56:42 +03:00
parent f3084be234
commit 6ead9b6ecc
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_read_timeout 600s;
proxy_send_timeout 600s;