nginx 仮想ホストの設定

nginx 仮想ホストの設定

Debian GNU/Linux 7 (wheezy) マシンで nginx 仮想ホストを構成する際に問題が発生しています。

表示されるのは 500 内部サーバー エラーだけです。

以下は vhost_autogen.conf ファイルの例です。

server {
  listen                *:80;

  server_name           api-dev.domain.com;

  access_log            /var/log/nginx/api-dev.domain.com.access.log;
  error_log             /var/log/nginx/api-dev.domain.com.error.log;

  location / {
    root  /code/api.domain.com/public;
    try_files  $uri $uri/ /index.php?$args;
    index  index.html index.htm index.php;
  }

  location ~ \.php$ {
    root  /code/api.domain.com/public;
    try_files  $uri $uri/ /index.php?$args;
    index  index.html index.htm index.php;
    fastcgi_index index.php;
    fastcgi_param PATH_INFO $fastcgi_path_info;
    fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param APP_ENV dev;

    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    include fastcgi_params;
  }

}

念のため完全な権限 (777) を与えたので、権限の問題はほぼ間違いなくありません。

何かヒントはありますか?

エラーログは次のとおりです:

2013/12/22 17:08:11 [error] 4341#0: *16 rewrite or internal redirection cycle while internally redirecting to "/index.php", client: 192.168.56.1, server: api-dev.domain.com, request: "GET / HTTP/1.1", host: "api-dev.domain.com"

助けてくれてありがとう。

答え1

try_files両方のブロック内に間違いがありますlocation

try_files  $uri $uri/ /index.php?$args;

これにヒットすると$uri/、nginx はディレクティブで指定されたすべてのファイルを検索しますindex。 にヒットしindex.php、2 番目の に移動しlocation、そこでループに陥っているようです。

これを次のように書き直します。

location / {
    try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
    try_files $uri =404;
}

2番目には指示はまったくlocation必要ありません。index

関連情報