Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Разный proxy pass в зависимост и от $http referer
Здравствуйте!
Цель: в зависимости от referer перенаправить запрос.
location / {
set $ups 'http://login:80/';
if ($http_referer ~* "^http://(.*)/fw-in/(.*)$" ) {set $ups
'http://in:80/';}
if ($http_referer ~* "^http://(.*)/webrelay/(.*)$" ) {set $ups
'http://web:80/';}
proxy_pass $ups;
# this line is 258, the next is 259
proxy_redirect default;
proxy_set_header X-Real-IP $remote_addr;
}
Результат:
"proxy_rewrite_location default" must go after the "proxy_pass" directive in
/etc/nginx/conf/nginx.conf:259
Вопрос: где я не прав?
Заранее спасибо!
PS это в server {...} с ssl;
Posted at Nginx Forum: http://forum.nginx.org/read.php?21,40929,40929#msg-40929
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|