Welcome! Log In Create A New Profile

Advanced

how to configure multiple virtual server on nginx?

July 26, 2011 10:30PM
Hi,all
Pardon please,I'm not an russian native speaker.So,I write my mail post in english.
I have 4 IP address on my ubuntu server computer.For the convenience to ditinguish them ,I name them as IP-1,IP-2,IP-3 and IP-4.
Now,I configure 3 virtual servers on nginx.The key content of configuration is following.

#upstream
upstream my_upstream{
server IP-3:8080;
server IP-4:8080;
}

#the first server
server {
listen IP-1:80;
location / {
index index.php;
root /usr/share/nginx/www;
}
location ~.*\.(php|php5)$ {
root /usr/share/nginx/www;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
}
}

#the second server
server {
listen IP-2:80;
location / {
index index.php;
root /usr/share/nginx/www;
}
location ~.*\.(php|php5)$ {
root /usr/share/nginx/www;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
}
}

#the third server
server {
listen IP-3:80;
location / {
proxy_pass http://my_upstream;
}
location ~.*\.(php|php5)$ {
root /usr/share/nginx/www;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
}
}
########################################################

In my opinion,those 3 virtual servers can wholely work right.But I met a very surprising problem:the 1st and 2nd server can work right,nevertheless,the third virtual server can not access.I look over nginx.conf,and never find out any configuration mistake.Then,I change the 3rd server's LISTEN IP address IP-3 to IP-2,and change the 2nd server's LISTEN IP address IP-2 to IP-3.Oh my god,the 2nd server can not access,but the 3rd can.I just exchange their LISTEN IP address.If you have understood my problem description,would you please give me some good suggestion?
Thanks!
Subject Author Posted

how to configure multiple virtual server on nginx?

debugger87 July 26, 2011 10:30PM

Re: how to configure multiple virtual server on nginx?

debugger87 July 26, 2011 10:33PM

Re: how to configure multiple virtual server on nginx?

Maxim Dounin July 27, 2011 03:24AM

Re: how to configure multiple virtual server on nginx?

debugger87 July 27, 2011 06:08AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 190
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready