Помогите с составлением правил

Alexey Mahotkin squadette at gmail.com
Tue Nov 24 18:38:33 MSK 2009


2009/11/24 Роман <n.g.i.n.x.e.r at gmail.com>:
> в корне обрабатывать все через index.php
> и в system все через index.php
> и чтобы не перекрывались между собой

если через нижележащий апач -- то

       location ~ \.php$ {
                proxy_pass http://127.0.80.1:80;
                proxy_set_header X-Forwarded-For $remote_addr;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Host $host;
        }

        location / {
                 try_files $uri /index.php;
        }

если через Fastcgi -- то в документации к nginx есть куча примеров.

-- 
Алексей Махоткин
http://squadette.ru/


More information about the nginx-ru mailing list