ПРОЕКТЫ 


  АРХИВ 


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: Статика с субдомена



On Thu, Sep 15, 2011 at 08:04:44AM -0400, BinLaden wrote:
> К сожалению, нет...
> 
> Вот что сюда добавить, чтобы ничего не
> цеплялось c host.domain.ru?
> 
> > location / {
> > proxy_pass http://xx.xx.xx.xx;
> > proxy_set_header Host $host;
> > proxy_set_header X-Forwarded-For $remote_addr;
> > }


server {
    server_name domain.ru;

    location / {
        root   ...
    }
}

server {
    server_name host.domain.ru;

    location / {
        proxy_pass http://xx.xx.xx.xx;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_cache   one;
    }
}


-- 
Igor Sysoev

_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru


 




Copyright © Lexa Software, 1996-2009.