Nginx e Codeigniter reescrevem o erro

1

Estou tentando obter um site no nginx em execução com base no codeigniter. Algumas partes funcionam, mas algumas falham. Percebi nos logs de acesso que o index.php às vezes tem duas barras no final insted de um que eu também não estou conseguindo pegar meu post corretamente (retorna 404).

meu conf para nginx é o seguinte para o meu site padrão (é o único no servidor)

server {
    server_name xxx.com;
    return 301 $scheme://www.xxx.com$request_uri;
}
server {
    root /srv/www/xxx;
    index index.php index.html index.htm;

    server_name www.xxx.com;

    # removes trailing "index" from all controllers
    if ($request_uri ~* index/?$)
    {
        rewrite ^/(.*)/index/?$ /$1 permanent;
    }

    if (!-e $request_filename)
    {
        rewrite ^(.*)$ /index.php/$1 last;
        break;
    }

    location \ {
        try_files $uri $uri/ @no_php_ext;
    }

    # catch all
    error_page 404 /index.php;

    location ~ \.(php)$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
        # With php5-fpm:
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param   SCRIPT_FILENAME /srv/www/xxx/$fastcgi_script_name;
        include fastcgi_params;
        #fastcgi_read_timeout 900;
    }

    location @no-php-ext {
        rewrite ^(.*)$ index.php/$1 last;
    }
}

Eu tentei muitas mudanças nas reescritas, mas sem sucesso. Qualquer ajuda é muito apreciada.

    
por osci 22.07.2013 / 09:50

1 resposta

0

Este trabalhou para mim. Todas as páginas são retornadas com 200 agora. Eu ainda tenho probs com tarefas agendadas, mas isso deve ser feito em uma pergunta diferente.

server {
        root /srv/www/xxx;
        index index.php index.html index.htm;
        server_name www.xxx.com;
        access_log  /var/log/nginx/xxx.access.log;
        error_log  /var/log/nginx/xxx.error.log;

        location = / {
                try_files $uri $uri/ /index.php;
                rewrite ^/(.*)$ /index.php;
        }
        location / {
                # Check if a file or directory index file exists, else route it to index.php.
                try_files $uri $uri/ /index.php;

                location = /index.php {
                    fastcgi_pass unix:/var/run/php5-fpm.sock;
                    include fastcgi_params;
                }

        } 
        location ~ \.php$ {
            return 444;
        }
}
    
por 25.07.2013 / 13:59