Страница 1 из 1

Nginx, подскажите что не так?

Добавлено: 2010-04-02 13:19:42
InventoR
Ставлю сервер nginx, нужен для того чтобы организовать доступ к двум внутренним сайтам из вне.
Вот конфиг

Код: Выделить всё

user              nginx;
worker_processes  1;
error_log         /var/log/nginx/error.log;
pid               /var/run/nginx.pid;

events {
    worker_connections  1024;
}

http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;
    log_format  main  '$remote_addr - $remote_user [$time_local] $request '
                      '"$status" $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;
    sendfile on;
    server {
        listen *:82;
        server_name www.firma.ru firma.ru;
        location / {
        proxy_pass http://192.168.0.20;
        #proxy_redirect off;
        proxy_set_header        Host    $host;
        proxy_set_header        X-Real-IP       $remote_addr;
        #proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
        }
    }

}
Так веб сервер с 192.168.0.20 из локальной сети нормально отзывается, а вот через http://www.firma.ru:82 не хочет, и судя по tcpdump на 0.20 ngix не пересылает запросы.

Код: Выделить всё

configure arguments: --user=nginx --group=nginx --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --pid-path=/var/run/nginx.pid --lock-path=/var/lock/subsys/nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_gzip_static_module --with-http_stub_status_module --with-http_perl_module --with-mail --with-mail_ssl_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables' --add-module=/builddir/build/BUILD/nginx-0.6.39/nginx-upstream-fair

Re: Nginx, подскажите что не так?

Добавлено: 2010-04-02 13:43:55
InventoR
спасибо, решено, firewall на сервер не давал пройти.

Re: Nginx, подскажите что не так?

Добавлено: 2010-04-04 10:51:14
kbakenov
заранее состряпал сказочку?!