ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re[4]: shared на разных ip адресах



> Да, писать, а Вы что хотели, чтобы было по другому?

Можно и подругому.
Для 1 ip работает на ура такая конструкция

user  www-data;
worker_processes  2;

pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    log_format main  '$remote_addr [$time_local] "$http_host" "$request" 
$status $body_bytes_sent "$http_referer" "$http_user_agent"';

    access_log  /var/log/nginx/access.log  main;

    #gzip            on;
    sendfile        on;
    #tcp_nopush        on;
    tcp_nodelay        on;

    #keepalive_timeout    0;
    keepalive_timeout    65;

    server {
        listen *:81;
        charset off;


        location /errors/ {
            root /var/www;
        }

        location / {
            proxy_pass        http://xx.xx.xx.xx/;
            proxy_redirect off;

            proxy_set_header    Host       $host;
            proxy_set_header    X-Real-IP  $remote_addr;
            
            client_max_body_size    16m;
            proxy_buffering        off;

            error_page        404 /errors/404.html;
            error_page        502 503 /errors/503.html;
        }
    }
}

все бы хорошо но 1 ip(




 




Copyright © Lexa Software, 1996-2009.