If you're watching this video and wondering if it's the proper place to learn nginx, trust me, it is. Thank you for taking the time to prepare such valuable stuff, mate.
Nginx acts as a web server, load balancer, and encryption tool 00:05 ✦ Use Nginx as Reverse Proxy 07:18 ✦ Configuring nginx to serve static HTML and CSS files 13:37 ✦ Learned about MIME types and location context in NGINX 20:08 ✦ Using alias instead of root in NGINX configuration 26:12 ✦ Learned about location block in nginx 32:37 ✦ Configure and build a Docker container for a Node.js server 38:51 ✦ Load balance across multiple servers using Nginx 44:58
Returning here 2 years after I first saw the video, I realised just now how much I have learnt. I am so grateful for your channel, everytNice tutorialng
This was soooo well timed for me 😅 I just taught myself docker, but somewhere during my learning process, I came across the NGINX image, and while the instructions for using it to deploy my react app build were simple enough, I didn't really know what I was doing. This video provided awesome background info for me. Also, I binged your 3.5hr GraphQL course yesterday/today, so you're literally educating me 🏆. You rock man, keep it up bro! Greetings from Athens. Athens, Ohio, that is 😂
We are living the same life right now lol. I just add to start learning NGNIX; I can get it to work but have no clue what I was doing or why lol. It's been a fun week. This video was just perfect.... Now got to look up 3.5 Graph lol. Fun ride.
at 16:10, if you are using WSL and trying to put your windows directory such as for example "D:\projects\website", it won't work, and you will get a 404 error. What you need to do is to go to that directory in file explorer, right click and open terminal, run the 'bash' command to launch Linux in that particular directory. You will see the same path for the directory from the Linux perspective, it will look like something like "/mnt/d/projects/website". THAT is the correct path to copy to the nginx.config file (without quote). Hope this helps.
I've already watched a lot of NGINX tutorials and I will watch a lot more. So far though no tutorial has offered nearly as much practical knowledge as this one. Cheers.
I was looking to learn what is NGINX because I will be needing it in my work and other tutorials are years away from how good this tutorial is it covers what it is how to set it up and use it in a fast and comprehensive way. Thanks for taking the time and making a well done tutorial like this.
It was simply incredible. I started this video without knowing anything about nginx. I made some notes to deepen my knowledge on some topics such as load balancer performance, autoscaling and redirection. Thank you for this class!! 🇧🇷
Amazing video, you covered so many of my questions since I am currently building an express server and was looking into proxy passing with load balancing. Couldn't have asked for anything better. Would have loved to seen the proof at the end tho.
I'm not so Experience but this video is worth a tym just dont try to skip and watch bcuz it disconnects ,while this content is great for beginner to understand what ,why exactly the nginx is and what it is used for .I will say brother your way of teaching, like starting from therotical explanation -->than installation-->than practical implementation with different examples.It's cool Brooo.U can even eloberate Installatuon more or a special clickbait for those and Source code would be like cherry on Cake .Thanks Buddy.GBU
Great video, got me on my feet for nginx 36:45 the regular expression (\w+) in rewrite ^/number/(\w+) is only allowing word characters, excluding numbers so when it rewrites to location ~* /count/[0-9], this context is only looking for numbers, the rewrite may 404 the fix would be to replace (\w+) to (\d+) or reuse the context regex ([0-9]+)
Thanks, good introductory video on nginx! To better show that load balancer is working you could've introduced env variable in docker file and print this variable by express server, and different variables can be passed when you spin up a container.
Quality content and very well structured course. I like the pedagogical structure of building knowledge in layers that you use! Well done! Instant sub!
great piece of knowledge, but a wish to see part2 where there is a section called "security" which is very important today, security headers, path traversal etc ;)
Awesome course, it helped me alot. please keep up this great work. but just a comment on 07:30 (HTTPS), NGINX will encrypt the traffic with client, but decrypt it with servers.
Well, Explained Sir. I saw the edureca video also, but I didn't understand much. but, you nailed it with your explanation sir. Please continue your contents
@6:50 the server does not encrypt the requests sent by a client web browser, it's the client which encrypts the HTTPS requests before sending them the server only encrypts the data that it sends
You are doing a great job man. Kindly create content on top trending technology i.e Blockchain How to create Dapps, solidity code, nfts, defi or much more . Counting on you sir
This is the best video i have seen so far to Nginx. Thank you for explaining it in detail about the directives. Can you make a video on file upload part?
If you're watching this video and wondering if it's the proper place to learn nginx, trust me, it is. Thank you for taking the time to prepare such valuable stuff, mate.
Thanks, mate. I was unsure, which course to watch. Gladly, I read your comment and chose this one.
thank you, i'll stick
I had watched this comment before the first frame of the video appeared.
Thank you, mate!
He made it look too simple that I began to doubt it
within 20 minutes, i've learned more about the web than from hours of online "tutors". you're amazing homie, you just earned a loyal subscriber.
This is so calm, no rushing, no pressure tech video I have ever watched.
Nginx acts as a web server, load balancer, and encryption tool
00:05
✦
Use Nginx as Reverse Proxy
07:18
✦
Configuring nginx to serve static HTML and CSS files
13:37
✦
Learned about MIME types and location context in NGINX
20:08
✦
Using alias instead of root in NGINX configuration
26:12
✦
Learned about location block in nginx
32:37
✦
Configure and build a Docker container for a Node.js server
38:51
✦
Load balance across multiple servers using Nginx
44:58
Give this man the internet.
He deserves it!
Returning here 2 years after I first saw the video, I realised just now how much I have learnt. I am so grateful for your channel, everytNice tutorialng
wait did I just finish the course, I'm sure I came here just to explore what is NGINX about.THIS IS SMOOTH
This was soooo well timed for me 😅
I just taught myself docker, but somewhere during my learning process, I came across the NGINX image, and while the instructions for using it to deploy my react app build were simple enough, I didn't really know what I was doing. This video provided awesome background info for me. Also, I binged your 3.5hr GraphQL course yesterday/today, so you're literally educating me 🏆. You rock man, keep it up bro!
Greetings from Athens. Athens, Ohio, that is 😂
We are living the same life right now lol. I just add to start learning NGNIX; I can get it to work but have no clue what I was doing or why lol.
It's been a fun week. This video was just perfect.... Now got to look up 3.5 Graph lol. Fun ride.
Greetings from Dayton OH. I’m on the same learning path as you
ohio 💀
lol me too
This is the kind of crash course I needed to understand Nginx, as I prepare to deploy my first Django DRF app.
thank you, from someone who couldn't navigate his way through the blinding codes of nginx who now feels blessed to know this.
at 16:10, if you are using WSL and trying to put your windows directory such as for example "D:\projects\website", it won't work, and you will get a 404 error. What you need to do is to go to that directory in file explorer, right click and open terminal, run the 'bash' command to launch Linux in that particular directory. You will see the same path for the directory from the Linux perspective, it will look like something like "/mnt/d/projects/website". THAT is the correct path to copy to the nginx.config file (without quote). Hope this helps.
I've already watched a lot of NGINX tutorials and I will watch a lot more. So far though no tutorial has offered nearly as much practical knowledge as this one. Cheers.
Best NGINX course out there. Don't go looking anywhere else, this is the one
I was looking to learn what is NGINX because I will be needing it in my work and other tutorials are years away from how good this tutorial is it covers what it is how to set it up and use it in a fast and comprehensive way.
Thanks for taking the time and making a well done tutorial like this.
the best Nginx tutorial on youtube. Thanks man for your video.
I want to thank you for the excellent way you explained and elaborated on the topic. It's the best video I've seen in 2024.
Understanding Nginx for beginners. The explanations are on point and easy to grasp. Thank you.
Absolutely.
It was simply incredible. I started this video without knowing anything about nginx. I made some notes to deepen my knowledge on some topics such as load balancer performance, autoscaling and redirection. Thank you for this class!! 🇧🇷
Thank you so much for all the great videos that you made! Everything is so detailed, step-by-step and doesn't create any confusion!
Amazing video, you covered so many of my questions since I am currently building an express server and was looking into proxy passing with load balancing. Couldn't have asked for anything better. Would have loved to seen the proof at the end tho.
Really liked how calmly you described things without rushing
This is much better than any Udemy Course, Thanks man
I was trying so hard to learn this from days but nobodies tutorial was clear like yours man thank you so much
Thank you ❤ the way you started the video explaining why we need nginx and what are the problems that nginx is going to solve is 👏👏
thank you so much, That was so helpful. I now understood what nginx really is.
Thank you again from Uzbekistan 🇺🇿
so easy to understand explained 'what is NGINX' !
Thanks for the premium content, good luck to everyone ❤
TNice tutorials is absolutly the best video of the world you expaining skills are good and it was a honor to see tNice tutorials vid well done
This is worth watching I would recommend it to everybody thanks for this soundful knowledge...
Huge thanks!!! I was always looking for a tutorial that would clarify the fog around ngnix until this video I didn't find. This video is a diamond!!!
It's scratching my itchy back nicely ! AWESOME
I'm not so Experience but this video is worth a tym just dont try to skip and watch bcuz it disconnects ,while this content is great for beginner to understand what ,why exactly the nginx is and what it is used for .I will say brother your way of teaching, like starting from therotical explanation -->than installation-->than practical implementation with different examples.It's cool Brooo.U can even eloberate Installatuon more or a special clickbait for those and Source code would be like cherry on Cake .Thanks Buddy.GBU
Difficult concepts broken down into simple, consumable bites of information. Well done, and thank you!
The crystal celar explanation i've ever seen on YT, well done sir
Learned a lot!!!!!!!!!!!!!!!!!! do watch, you may come across many problems but just don't give up eventually you will learn
simply amazing thank you very very much!!
Thanks, great video.
Amazing. Please do more on architecture.
May Allah save you and bless your parents
Great video, got me on my feet for nginx
36:45 the regular expression (\w+) in rewrite ^/number/(\w+) is only allowing word characters, excluding numbers
so when it rewrites to location ~* /count/[0-9], this context is only looking for numbers, the rewrite may 404
the fix would be to replace (\w+) to (\d+) or reuse the context regex ([0-9]+)
Many many thanks brother for this toturial ❤️🙏👍
Love from India ❤️❤️
This channel deserves more subscribers
Super video over NGINX, now I have a better understanding of NGINX!👌
Thanks, good introductory video on nginx! To better show that load balancer is working you could've introduced env variable in docker file and print this variable by express server, and different variables can be passed when you spin up a container.
This is the most coherent nginx video I have found - thank you!
Thank you so much! Really concise, easy to follow and understand your explanations.
I needed a refresh, thanks for the video man.
Somehow I was exploring to learning nginx and this is great one.
Quality content and very well structured course. I like the pedagogical structure of building knowledge in layers that you use! Well done! Instant sub!
Hello 👋 Great job, thanks for this guide. I hope to see more detailed ssl configuration via nginx :)
Best class about nginx!
well done bro you have done this course in avalubel way. thanks
Great piece! Enjoyed every bit of it.
This is a gold. Other tutorials or articles or StackOverflow answers are so terrible .
great piece of knowledge, but a wish to see part2 where there is a section called "security" which is very important today, security headers, path traversal etc ;)
Thank you sir. Excellent content. Nginx has been kicking my behind.
Finally, the perfect NGINX tutorial exists!
God Bless You! You are an Angel.
I'm Subscribed for life!
best nginx video so far!
Great content, thanks a bunch!
Awesome course, it helped me alot. please keep up this great work.
but just a comment on 07:30 (HTTPS), NGINX will encrypt the traffic with client, but decrypt it with servers.
Thank you my friend
Only one word, *Excellent!* 🙏
Really excellent well explained content thanks
Thank you so much! this video is very helpful and straightforward🙏
5:08 I think the latency would get extremely high rather than low :)
Brilliant, thanks for an excellent tutorial !
Amazing crash course! Learned a lot.
Thank you
very informative and well explained! thank you for this amazing tutorial.
This is high quality material💯
I really appreciate for this quick couse.
Awesome! Thank you for making this.. It is really helpful for beginners..
This is really very good, wish you would come up with videos on nginx in pods of k8s.
Thanks a lot!😍, sharing this video with many others.
Yes I would take your word for it 😁 great content. This is so good.
Excellent quality-full content
Well, Explained Sir. I saw the edureca video also, but I didn't understand much. but, you nailed it with your explanation sir. Please continue your contents
@6:50 the server does not encrypt the requests sent by a client web browser, it's the client which encrypts the HTTPS requests before sending them
the server only encrypts the data that it sends
Extremely well explained
Great crash course. Thank you!
Thank you so much for this. Absolutely fantastic resource
Unstoppable today, unstoppable today
yes its a great course as always
Thank you for this video. Very helpful
You are doing a great job man.
Kindly create content on top trending technology i.e Blockchain
How to create Dapps, solidity code, nfts, defi or much more .
Counting on you sir
Great tutorial, i've finally learned how to spell vegantables
Finally someone explain it simply thank you!
Thanks. Excellent demonstration.
Super tutorial. Extremely helpful for someone who is a beginner, especially for a noob like me 😛.
Thanks Man!
Merci!
Wanted to try it out :)
your explain is very clear and thank for that man.
Great course.🚀Thank you !!!
Thank you, this is what i was looking for
Amazing ! Superb 👍👍👍👍
Great content with awesome teaching style 👍👍👍
21:00 There is 'Disable cache' button on Network tab. Thanks for tutorial
This was absolutely fantastic
omg I love you bro thanks for making this awesome video 🎉🎉
Awesome video ! Great work !
This was awesome.
Great content. Recommended.
This is the best video i have seen so far to Nginx. Thank you for explaining it in detail about the directives. Can you make a video on file upload part?