Да вариант, спасибо!
А как туда добавить это:
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
?
Ставим:
location / {
if ($request_method = POST) {
proxy_pass http://192.168.2.2;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
...
}
Получаем:
2006/11/08 23:56:34 [emerg] 19950#0: directive "proxy_set_header" in
/usr/accel/conf/nginx.conf:87 is not allowed here
Эти директивы
proxy_read_timeout 5m;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
можно определить, например, на уровне server или даже http.
Игорь Сысоев
http://sysoev.ru