|
|
|
|
АРХИВ :: nginx-ru
|
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Простое перенаправлени е
2010/6/8 artdanilov <nginx-forum@xxxxxxxx>:
> location / {
> proxy_pass 127.0.0.1:80;
> proxy_set_header Host $host;
> }
>
> location ~* \. (jpg|gif|png) {
> root /home/.....;
+ try_files $uri @apache;
> }
+ location @apache {
+ proxy_pass http://127.0.0.1; # надо обратить внимание на
отсутсвие слеша в конце.
+ }
--
Boris Dolgov.
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|
|
|