-
Notifications
You must be signed in to change notification settings - Fork 147
Nginx Configuration
Muaz Khan edited this page Aug 26, 2019
·
1 revision
location ~* \.io {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://localhost:9001;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
Now you can install RTCMultiConnection and open port 9001
.
Disclaimer: This guide is taken from this link and credits goes to @Teranode.