web-dev-qa-db-ja.com

nginxでhttpをhttpsにリダイレクトし、ルールを書き換えてリダイレクトループを提供します

とともにhttpをhttpsにリダイレクトしたい

rewrite ^(.*)$ /$1.php;

私のnginx仮想ホストファイル:

server {
   listen         80;
   server_name    domain.com;
   return         301 https://$server_name$request_uri;
}

server {
   listen         443 ssl;
   server_name    domain.com;
   root /var/nginx/html;

   ssl_certificate /home/domain.crt
   ssl_certificate_key /home/domain.key

   location / {
            if (!-e $request_filename){
                    rewrite ^(.*)$ /$1.php;
            }
            try_files $uri $uri/ /index.html;
   }

    error_page 404 /404.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 /var/run/php5-fpm$
    location ~ \.php$ {
            try_files $uri =404;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_nam$
            include fastcgi_params;

    }

}

…しかしこれは私にリダイレクトループを与えます。誰かが私が間違っていることを私に指摘できますか?

2
Deep S.
if (!-e $request_filename){
    rewrite ^(.*)$ /$1.php;
}
try_files $uri $uri/ /index.html;

/$1.phpも存在しない場合はどうなりますか?残念ながらNginxの専門家ではありませんが、Apacheでは、この種の書き換えによって書き換えループが発生する可能性があります(書き換える前に、まずファイルが存在することを確認する必要があります)。

これをtry_filesのみを使用して書き換えるべきではありませんか?例えば:

try_files $uri $url.php $uri/ /index.html;
1
MrWhite