Тёмный
No video :(

Proxying WebSockets with NGINX 

Juriy Bura
Подписаться 16 тыс.
Просмотров 70 тыс.
50% 1

Learn how to set up NGINX as a reverse proxy for WebSockets or SocketIO app.
------------------
Deploying Node playlist:
• Deploying Node

Опубликовано:

 

27 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 60   
@colbr6733
@colbr6733 2 месяца назад
This is excellent. I've been looking to better understand what is going on with WebSockets and Nginx. This is certainly one of the best explanations available on you tube, most simply say copy this code and paste it into locations.
@ishanksharma9051
@ishanksharma9051 6 лет назад
This series need to be spread around , great work
@oranbenavi8105
@oranbenavi8105 5 месяцев назад
I've spent 2 days trying to find a solution to my error, even chatgpt failed to help. Thank you so much you video help me a lot 🙏🙏🙏
@khalidelgazzar
@khalidelgazzar Год назад
Really great video. Love showing the dev tools and different network options (web sockets, XML ajax requests)
@kunah5250
@kunah5250 2 года назад
Broooo you're the king, i literally spent an evening trying to host my ws server, and i finally found your video, thank god, you saved me, ilusm bro ❤
@thatoyaonebogopa9483
@thatoyaonebogopa9483 2 года назад
Gread short snippets. Easy to digest. Love it.
@silvesterlangen164
@silvesterlangen164 Год назад
Thank you for showing how to configure it. This saves me hours of work. :-)
@smartliga8623
@smartliga8623 5 лет назад
So much times you saved me a lot of time. Thank you for socket error handling
@yassin_eldeeb
@yassin_eldeeb 3 года назад
Thank you so much, You don't know how I spent the last 7 days in nightmare with that problem, Finally I found you, You deserve more than a subscribe and a like. P.S: Do you have a Patreon or something like that you must get at least some appreciation.
@dawid_dahl
@dawid_dahl 3 года назад
I love this video series! Please make more things like this! :D
@denial3874
@denial3874 4 года назад
failed: WebSocket is closed before the connection is established.
@skob
@skob 5 лет назад
Спасибо, очень выручили! Thanks, really useful video!
Год назад
Thanks! Simple solution and very well explained
@JustLookA7
@JustLookA7 3 года назад
Life saving video. Thank you very much :)
@oszy6069
@oszy6069 4 года назад
Hi! what if you want websocket to listen in a different socket but keep website on socket 8080?
@adityakulkarni2472
@adityakulkarni2472 3 года назад
@elmasx
@elmasx 8 месяцев назад
Thank you so so much!
@josedizon7389
@josedizon7389 2 года назад
It worked!! thanks bro
@guilhermeninov8536
@guilhermeninov8536 Год назад
You saved my life!
@hillside_coder
@hillside_coder 4 года назад
Can you do this with an another Node process, over a different port....Or it needs to be 8080? Is it possible for example to have another location block, where you would proxy pass websocet connection , over maybee 4000?
@ericktucto
@ericktucto 2 года назад
Muchas gracias me ayudaste a configurar mi servidor php para usar con websocket y asi hacer un chat real-time
@JimmiJohnJunnior
@JimmiJohnJunnior 5 лет назад
I have set mqtt connections to the same path as my website but with different ports, how would I go about solving that?
@TusharBorawake
@TusharBorawake 3 года назад
Hi, I am facing issue in same scenario. Could you please guide me in this. I have react application which connects to tomcat server using nodejs server. On server all the API logic is implemented and now I want to implement websocket which will first connect to node server then tomacat server. I just know the there should be a tunneling logic needs to be implemented but I don't know how to do that. Could you please help me in this.
@tfaimummy
@tfaimummy 6 лет назад
on port 80 io was run but I have CORS issue when ssl is activated? can you help me please!
@RdozeTV
@RdozeTV 3 года назад
What if have ssl and i want to do using wss
@ehsanmohiti3071
@ehsanmohiti3071 4 года назад
Good Job man. thanks.
@matejmaloca1000
@matejmaloca1000 7 лет назад
How diffrent is configuration if we are working with https/2?
@JuriyBura
@JuriyBura 7 лет назад
To be honest I have never tried it in production, however it looks like Nginx has "http2" flag that should make things "just work". The server configuration block should look like "listen 443 ssl http2 default_server;" to have both SSL and HTTP2. Disclaimer: haven't tried it and don't know if it will work :)
@matejmaloca1000
@matejmaloca1000 7 лет назад
Thanks for getting back to me.
@mystery7546
@mystery7546 5 лет назад
Can you Create a Video about deploying the socket.io app in the server using node and react from scratch
@sandeepdubay2204
@sandeepdubay2204 Год назад
Super tutorial
@speckygaming8499
@speckygaming8499 11 месяцев назад
can anyone help me i making a microservice to handle 50k concurrent request on node js and socket io i want to divide the load on multiple connection and those connection should not close or die when user leave all 50k connection should me maintaind
@JuriyBura
@JuriyBura 11 месяцев назад
Hmm, not quite sure how this is supposed to work though. If the user leaves and closes their side of the connection, the connection will be closed. Overall, I would recommend looking at something that has auto-scaling, for example AWS API Gateway + Lambdas, if the load is spiky and you need elasticity. For experimental purposes I found this article insightful: unetworkingab.medium.com/millions-of-active-websockets-with-node-js-7dc575746a01
@eyalpery8470
@eyalpery8470 Год назад
Thank you!
@AkamiChannel
@AkamiChannel 3 года назад
How to do all this with ssl is what confuses me.
@Microchaosmac
@Microchaosmac 6 месяцев назад
thanks
@ehsankhorasani_
@ehsankhorasani_ 4 года назад
Thanks for your awesome videos I have a graphql nodejs server which have just one endpoint. So how can I set up both http and websocket on one location. Because graphql only have one endpoint
@RK-gm4pd
@RK-gm4pd 4 года назад
how about import { WebSocketLink } from "apollo-link-ws"; import { HttpLink } from "apollo-link-http"; import { split } from "apollo-link"; import { getMainDefinition } from "apollo-utilities"; const httpLink = new HttpLink({ uri: "hasura-infiite-loader.herokuapp.com/v1alpha1/graphql" // use https for secure endpoint }); // Create a WebSocket link: const wsLink = new WebSocketLink({ uri: "ws://hasura-infiite-loader.herokuapp.com/v1alpha1/graphql", // use wss for a secure endpoint options: { reconnect: true } }); // using the ability to split links, you can send data to each link // depending on what kind of operation is being sent const link = split( // split based on operation type ({ query }) => { const { kind, operation } = getMainDefinition(query); return kind === "OperationDefinition" && operation === "subscription"; }, wsLink, httpLink );
@JonathanPohlner
@JonathanPohlner 5 лет назад
you said you'd post the config file? Is it on another video?
@jhonysou
@jhonysou 5 лет назад
I saw that you used port 80, if I'm using ssl do I need to set 443 right ?
@JuriyBura
@JuriyBura 5 лет назад
Jhony Souza right, but setting up SSL is a bit more complex than that. There’s another video about it in a playlist.
@jhonysou
@jhonysou 5 лет назад
@@JuriyBura Thanks very much !
@nikhilverma4976
@nikhilverma4976 5 лет назад
How come its okay to run all nginx related tasks as root but switch to a different user when working with pm2/node.js
@JuriyBura
@JuriyBura 5 лет назад
nginx is executed as user "nginx" it also has very limited permissions. When you run > systemctl start nginx, the script switches from "root" to "nginx" user if that makes sense.
@webgooniedotcom
@webgooniedotcom 4 года назад
I think you just helped me out tremendously. I use application manager for jump starting my node application which support showed me. However it doesn't work with websockets on my socket.io app that I have. I have many php applications running and don't want to disturb them so doing ngnix would need to be not disturbing my apache applications. I did your video earlier and killed all my php applications so I have ngnix installed but it's disabled. How can I do this same process just on apache to get websockets work. I have been looking for months and this is the closet video I could find even touching basis on my most biggest hurdle in development yet. It has halted all my nodejs applications because webrtc is the only reason I want to use node and because I can't get sockets configured on my centos 7 machine I have stopped for over 6 months now. Please advise you or anyone.
@user-os4yb9tg6w
@user-os4yb9tg6w 5 лет назад
thank you, Юрий
@cursorhigh
@cursorhigh Год назад
bro plz tell us for https and wss
2 года назад
Ty but how to do this as https?
@me-jz7uv
@me-jz7uv Год назад
Ssl certificate
@jack82822005
@jack82822005 5 лет назад
How could I know if the version of http is 1.1? thanks!!! >
@JuriyBura
@JuriyBura 5 лет назад
What do you mean by that? How do you make sure that the browser is indeed using HTTP1.1?
@jack82822005
@jack82822005 5 лет назад
I mean at 4:33, you set "proxy_http_version" as 1.1 , but how do we get that number?
@JuriyBura
@JuriyBura 5 лет назад
@@jack82822005 we don't :) we choose which HTTP version will proxy use. 1.1 is currently the most reasonable choice. The other option would be 2.0, but HTTP2 is a whole different story. Don't worry, HTTP 1.1 was released in 1997, so everything supports it.
@jack82822005
@jack82822005 5 лет назад
Oh OK I see!! so we use HTTP 1.1 in most case, right? Will you create another video to talk about HTTP 2? XD Thanks so much
@horlacsd
@horlacsd 4 года назад
spacebo moi brat
@Douglas-Heffernan
@Douglas-Heffernan 3 года назад
I _ L O V E _ U _ S O _ M U CH _ ! i struggled since 2 Days with my Ubunto 18.04 Server and Polling. Now i have a great WebSocket-Connection and my game runs sooooo smooth now
@khalidelgazzar
@khalidelgazzar Год назад
Really great video. Love showing the dev tools and different network options (web sockets, XML ajax requests)
@khalidelgazzar
@khalidelgazzar Год назад
Really great video. Love showing the dev tools and different network options (web sockets, XML ajax requests)
Далее
Client IP in NGINX reverse proxy
8:25
Просмотров 29 тыс.
WebSockets in 100 Seconds & Beyond with Socket.io
8:31
拉了好大一坨#斗罗大陆#唐三小舞#小丑
00:11
SIGMA ENVY IS UNTOUCHABLE 🔥 #insideout2
00:10
Просмотров 2,4 млн
Apache vs NGINX
7:53
Просмотров 286 тыс.
How to scale WebSockets to millions of connections
14:01
The NGINX Crash Course
50:53
Просмотров 484 тыс.
Load Balancing with NGINX
14:35
Просмотров 84 тыс.
How Web Sockets work | System Design Interview Basics
5:28
拉了好大一坨#斗罗大陆#唐三小舞#小丑
00:11