Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
nginx as TCP proxy
Коллеги,
Пытаюсь использовать nginx-devel-1.3.14 (из портов FreeBSD) как tcp load
balancer. Почему-то тест конфига не проходит с сообщением:
Performing sanity check on nginx configuration:
nginx: [warn] upstream "test" may not have port 80 in
/usr/local/etc/nginx/nginx.conf:34
nginx: configuration file /usr/local/etc/nginx/nginx.conf test failed
Что я делаю не так? Заранее спасибо. Полный конфиг приведён ниже.
worker_processes 1;
events {
worker_connections 1024;
}
tcp {
upstream test {
# simple round-robin
server localhost:783;
server murka:783;
check interval=3000 rise=2 fall=5 timeout=1000;
}
server {
listen 7783;
proxy_pass test ;
}
}
--
Victor Sudakov, VAS4-RIPE, VAS47-RIPN
sip:sudakov@xxxxxxxxxxxxxxxx
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|