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.
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.
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
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.
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 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.
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.
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.
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]+)
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
Quality content and very well structured course. I like the pedagogical structure of building knowledge in layers that you use! Well done! Instant sub!
@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
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 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?
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
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 ;)
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.
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
Give this man the internet.
He deserves it!
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.
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
wait did I just finish the course, I'm sure I came here just to explore what is NGINX about.THIS IS SMOOTH
the best Nginx tutorial on youtube. Thanks man for your video.
thank you, from someone who couldn't navigate his way through the blinding codes of nginx who now feels blessed to know this.
Great content, thanks a bunch!
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.
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.
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!
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.
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.
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
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!! 🇧🇷
Understanding Nginx for beginners. The explanations are on point and easy to grasp. Thank you.
Absolutely.
Merci!
Wanted to try it out :)
This video just made it super easy to learn NGINX actually!!! Thanks buddy!
I was trying so hard to learn this from days but nobodies tutorial was clear like yours man thank you so much
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!!!
Really liked how calmly you described things without rushing
This is much better than any Udemy Course, Thanks man
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.
thank you so much, That was so helpful. I now understood what nginx really is.
Thank you again from Uzbekistan 🇺🇿
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 👏👏
The crystal celar explanation i've ever seen on YT, well done sir
Difficult concepts broken down into simple, consumable bites of information. Well done, and thank you!
Thanks for the premium content, good luck to everyone ❤
Thanks
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
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]+)
I needed a refresh, thanks for the video man.
Thanks, great video.
This is worth watching I would recommend it to everybody thanks for this soundful knowledge...
This is an incredible course and it was a very awesome introduction to NGINX, just the right dose so I'm not a completely idiot about it.
This channel deserves more subscribers
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
What a great tutorial!!! Hats off to you!
Quality content and very well structured course. I like the pedagogical structure of building knowledge in layers that you use! Well done! Instant sub!
This is the most coherent nginx video I have found - thank you!
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!!
so easy to understand explained 'what is NGINX' !
It's scratching my itchy back nicely ! AWESOME
Super video over NGINX, now I have a better understanding of NGINX!👌
Great piece! Enjoyed every bit of it.
best nginx video so far!
Thank you so much! Really concise, easy to follow and understand your explanations.
Many many thanks brother for this toturial ❤️🙏👍
Love from India ❤️❤️
well done bro you have done this course in avalubel way. thanks
God Bless You! You are an Angel.
I'm Subscribed for life!
Best class about nginx!
This is high quality material💯
@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
Amazing. Please do more on architecture.
May Allah save you and bless your parents
Somehow I was exploring to learning nginx and this is great one.
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.
Really excellent well explained content thanks
Excellent quality-full content
Thank you so much! this video is very helpful and straightforward🙏
Thanks for this valuable course!!
Thank you sir. Excellent content. Nginx has been kicking my behind.
@30:20 is that necessary to add the /vegetables dir name at the try_files directive?
Only one word, *Excellent!* 🙏
Hello 👋 Great job, thanks for this guide. I hope to see more detailed ssl configuration via nginx :)
omg I love you bro thanks for making this awesome video 🎉🎉
Finally, the perfect NGINX tutorial exists!
Thanks a lot!😍, sharing this video with many others.
Yes I would take your word for it 😁 great content. This is so good.
Awesome course!!! big thanks!!
Amazing crash course! Learned a lot.
Thank you
Awesome! Thank you for making this.. It is really helpful for beginners..
Brilliant, thanks for an excellent tutorial !
very informative and well explained! thank you for this amazing tutorial.
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?
Thank you, this is what i was looking for
Great content with awesome teaching style 👍👍👍
At time 5:10 do you mean high latency when the server gets overwhelmed?
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
what if i cannot reload the page with the terminal, it gives the error "The term 'nginx' is not recognized as the name"?
5:08 I think the latency would get extremely high rather than low :)
Great crash course. Thank you!
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 ;)
Finally someone explain it simply thank you!
yes its a great course as always
Great course. I am subscribed
Super tutorial. Extremely helpful for someone who is a beginner, especially for a noob like me 😛.
Thanks Man!
I really appreciate for this quick couse.
Extremely well explained
This is really very good, wish you would come up with videos on nginx in pods of k8s.
Awesome video ! Great work !
This was absolutely fantastic
What a great video man!
Really great content like you know we need this
21:00 There is 'Disable cache' button on Network tab. Thanks for tutorial