Como habilito URLs limpos com o Nginx?


9

Estou usando o Drupal 7.x. Consegui fazê-lo funcionar sem URLs limpos.

Investigando, entendi que deveria criar um vhost para cada site drupal e habilitar URLs limpas com o código a seguir.

if (-e $ REQUEST_FILENAME) {
     rewrite ^ / (. *) $ / index.php? q = $ 1 last;
}

Como alternativa, eu poderia usar esse código.

location / {
         [... ]
         error_page 404 = @ drupal;
         [... ]
}

location @ drupal {
         rewrite ^ (. *) $ / index.php? q = $ 1 last;
}

No entanto, também vi que, sem criar um vhost, é possível ativar URLs limpos (como o Apache). Tentei nas duas linhas da minha configuração, mas não obtive resultado. Quando eu ativo URLs limpos, ele sempre exibe a palavra Nginx (o host local).

Qual é a maneira correta de ativar URLs limpos?

Esta é a minha configuração em / etc / nginx / sites-available / default.

server {
        listen   80; ## listen for ipv4; this line is default and implied
        listen   [::]:80 default ipv6only=on; ## listen for ipv6

        root /usr/share/nginx/www;
        index index.php index.html index.htm;

        # Make site accessible from http://localhost/
        server_name localhost;

        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to index.html
                try_files $uri $uri/ /index.html;
                # Uncomment to enable naxsi on this location
                # include /etc/nginx/naxsi.rules
        }

        location /doc/ {
                alias /usr/share/doc/;
                autoindex on;
                allow 127.0.0.1;
                deny all;
        }

        location /images {
                root /usr/share;
                autoindex off;
        }
        # Only for nginx-naxsi : process denied requests
        #location /RequestDenied {
                # For example, return an error code
                #return 418;
        #}

        #error_page 404 /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root /usr/share/nginx/www;
        }

        #Pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
                try_files $uri =404;
                #fastcgi_split_path_info ^(.+\.php)(/.+)$;
        # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini

                # With php5-cgi alone:
                #fastcgi_pass 127.0.0.1:9000;
                # With php5-fpm:
                fastcgi_pass unix:/tmp/php5-fpm.sock;
                fastcgi_index index.php;
                include fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
                deny all;
        }
}

Eu não criei nenhum vhost no meu servidor; nem eu sei como.


1
Você já viu / tentou o seguinte, nos documentos do Drupal? drupal.org/node/976392
geerlingguy

@geerlingguy Sim. Essa parte do código que adicionei ao meu arquivo padrão no site está disponível e, quando entro no site, recebo o erro 500. Ou preciso criar um vhost?
Eduardo

1
Dê uma olhada em github.com/perusio/drupal-with-nginx . Possui todas as opções de configuração que você provavelmente precisará para executar o Drupal em um servidor Nginx.
amigos estão dizendo sobre jamestsymp

Respostas:


11

Em seguida, tenho esse trabalho com êxito:

  location / {
    index index.php;
    # This is cool because no php is touched for static content
    try_files $uri $uri/ @rewrite;
    expires max;
  }

  location @rewrite {
    # Some modules enforce no slash (/) at the end of the URL
    # Else this rewrite block wouldn't be needed (GlobalRedirect)
    rewrite ^/(.*)$ /index.php?q=$1;
  }

  location ~ \.php$ {
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME /srv/www/www.example.com/public_html$fastcgi_script_name;
    fastcgi_intercept_errors on;
    fastcgi_pass unix:/var/run/php-fpm.sock; # fastcgi_pass unix:/tmp/php5-fpm.sock;
 }

Eu adicionei @rewritee location @rewrite{}no meu arquivo /etc/nginx/sites-available/defaulte restartn nginx, mas não funciona para o meu. Quando eu ativar o URL de limpeza, exiba o host local.
Eduardo

2Eduardo: então você quer dizer que site.com/index.php está funcionando e abre a primeira página para você?
Nikit

Sim. Eu posso ver a Página de Inicio .. Mas há os outros páginas
Eduardo

hmm, você pode colar seu código novamente?
Nikit

funciona bem para mim
rude
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.