ПРОЕКТЫ 


  АРХИВ 


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: переадресация запроса Ng inx => Apache+Wiki движку MoinMoin



On Thu, Jun 10, 2010 at 10:03:22AM -0400, alexdem wrote:

> нашел решение 
> http://dotimes.com/iscale/2008/10/standalone-moinmoin-wiki-with-nginx-proxy.html
> с использованием mod_wsgi

Это плохое решение, написаное человеком с rewrite-мозгами.
Вот правильное решение:

    proxy_set_header        Host             $host;
    proxy_set_header        X-Real-IP        $remote_addr;
    proxy_set_header        X-Moin-Location  /wiki/;

    location = / {
        proxy_pass          http://localhost:8000/wiki/;
        proxy_redirect      http://localhost:8000/    /;
    }

    location /wiki {
        proxy_pass          http://localhost:8000;
    }

    location /moin_static {
        location ~ ^/moin_static[0-9]+/(.*)$ {
            proxy_pass      http://localhost:8000/moin/$1;
        }
    }

    location = /favicon.ico {
        proxy_pass          http://localhost:8000/moin/favicon.ico;
    }


-- 
Игорь Сысоев
http://sysoev.ru

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


 




Copyright © Lexa Software, 1996-2009.