Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Двойное проксирование
- To: nginx-ru@xxxxxxxxx
- Subject: Re: Двойное проксирование
- From: Ihalainen Nickolay <ihanick@xxxxxxxxx>
- Date: Tue, 20 Apr 2010 14:11:50 +0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:received:message-id:subject:from:to:content-type :content-transfer-encoding; bh=BxlfvGscuPt9oktKrvNWfEP9olE0gtBgbW7EGufsjCs=; b=mVv7q4XCEZaq1QPjoy3Q3X6X/w86ThvajWy/YAJOoYlDrlsFX99qMiAaMfR3JZo8fs lUeijtqtdPqNtfHDAYrKxiK+hx9Ny29yw0TrzrTITdw2GHiHLuvrTNvX65ioyzHGilI4 Q8wvKKxSsB+TgUONtlFWKh29yXKL9e8Eno+EA=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=sJXF9s1h57zzv5TCTkLDw6h01ACx9XLu9uctRolj83664gglndb+mk235FCMSnqUTw ulhB69v9iJerKnWpMxRRHSdkwqeNy3tLLcLPush8Sifq+uEUyNzzl/ong0xweqB/SDIw 7VFVutfzVzFIg8+eWZoErJHwTfxXWJnMNREHM=
- In-reply-to: <29942e8d7118ae37de563c048f3063c3.NginxMailingListRussian@xxxxxxxxxxxxxxx>
- References: <29942e8d7118ae37de563c048f3063c3.NginxMailingListRussian@xxxxxxxxxxxxxxx>
не устанавливайте на второй машине X-Real-IP
он и так уже имеет правильно значение: ip адресе клиента
2010/4/20 ZZZ <nginx-forum@xxxxxxxx>:
> Здравствуйте!
> У меня возникла странная проблема: апач получает неправильный ip после двух
> nginx'ов.
>
> Дело в том, что у меня есть реальный сервер, на котором работает три
> виртуальных (KVM).
> И вот, на одной из них, крутится сайт, который состоит из связки
> nginx-apache. Пока эта машина смотрела в сеть напрямую, всё нормально
> работало, но мы пересмотрели архитектуру и теперь статистика думает, что все
> запросы идут с 1.1.1.1, т.е. гипервизора.
>
> Проксирование на апач:
>
> location / {
> proxy_pass http://127.0.0.1:8088;
> proxy_set_header Host $http_host;
> proxy_set_header X-Real-IP $remote_addr;
> proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
> }
>
>
> Проксирование на виртуальную машину:
>
> location / {
> limit_req zone=one burst=5 nodelay;
> proxy_pass http://1.1.1.3:80;
> proxy_set_header Host $http_host;
> proxy_set_header X-Real-IP $remote_addr;
> proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
> }
>
>
> Как решить?
>
> Posted at Nginx Forum:
> http://forum.nginx.org/read.php?21,76990,76990#msg-76990
>
>
> _______________________________________________
> nginx-ru mailing list
> nginx-ru@xxxxxxxxx
> http://nginx.org/mailman/listinfo/nginx-ru
>
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|