Configuring reverse proxy for multiple hostnames using nginx

preview_player
Показать описание
This video explains how to configure nginx reverse proxy based on different hostnames
Рекомендации по теме
Комментарии
Автор

Vividly explained. Thank you, bro.Good job

mraluochmaina
Автор

Great video. All your hosts are on local host. What if there is another server? Do I just enter the other server ip address?

charlie
Автор

Awesome dear. Wonderful job. Appreciated

mohdnazir
Автор

Can I reverse proxy any website on my domain?

techsapphire
Автор

is applicable to send data by rtmp to different proxy based?

sjltv
Автор

10:03 How did you delete that "t"'... That's incredible.

serazummunirz
Автор

Assalam Walikum there Mahtab.. It's wonderful to learn from your tutorial.. such a clear and informative video honestly. I have seen your nginx videos and trying to learn them and you have thought me all those stuff where I was failed to find it on internet.
I have grabbed a lot of information for nginx but I am still stuck at one stage if you can just track me the correct path please.. 
Let me tell you that I am running nginx via Docker. Now I want to apply reverse proxy to many different host (All having different ips) I have for different purposes. such as 10.0.0.1 have mongoDB server, while 10.0.0.2 have mysql server and many other.. I just want to apply reverse proxy to them, but its kinda a difficult for me. I dnt knw wht file should I edit and wht script should I apply. CAn you please please help me Sir Mahtab.. Ill highly appreciate it.. and btw m ur fellow indian.

MuhammadMahirQ
Автор

Can you please make a video on upstream hosts on ngnix?

sush
Автор

Too bad this doesn't work on my Windows development machine. Proxy pass never resolves to the internal port, always to the NGINX welcome page. Oh well, back to Apache I suppose.

gosnooky
Автор

HI, Can you give me a solution for case : If I wan to make some subdomain for example like web1.zulfikar.com web2.zulfikar.com in wordpress, how to setting the nginx and should I install 2 wordpress at once on my server? how do I put the root location ? If you have any link video about that, please share to me, Thanks before.

mzw
Автор

you know you DON'T have to use vi ;)

artronics
Автор

below are config ...only micro-note is working but not another one ???





server {

listen 80;

server_name micro-note;



location / {



}

}

server {

listen 80;
server_name micro-user;

location / {


}

}

NikhilKumarrocks