8

2 つの異なる場所から 2 つの異なる php スクリプトを提供するように nginx を構成しようとしています。構成は次のとおりです。

  1. ディレクトリを提供する必要が /home/hamed/laravelあるLaravelインストールがあります。public
  2. にWordpressをインストールしてい/home/hamed/www/blogます。

そして、これは私のnginx構成です:

server {
        listen  443 ssl;
        server_name example.com www.example.com;

        #root /home/hamed/laravel/public;

        index index.html index.htm index.php;

        ssl_certificate /root/hamed/ssl.crt;
        ssl_certificate_key /root/hamed/ssl.key;

        location /blog {
                root /home/hamed/www/blog;
                try_files $uri $uri/ /blog/index.php?do=$request_uri;
        }

        location / {
                root /home/hamed/laravel/public;
                try_files $uri $uri/ /index.php?$request_uri;
        }
        error_page 404 /404.html;
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root /usr/share/nginx/html;
        }

        location ~ \.php$ {
                try_files $uri =404;
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
                #fastcgi_pass 127.0.0.1:9000;
                fastcgi_pass unix:/var/run/php5-fpm.hamed.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
        }

}

example.com/blog問題は、まだlaravelインストールを 呼び出してワードプレスセクションにアクセスしようとすると、リクエストが引き継がれることです。

今、ブロックroot内のディレクティブを無駄に 置き換えようとしました。locationalias

このガイドによると、indexディレクティブまたはtry_files内部locationを使用すると、この動作の原因と思われる内部リダイレクトがトリガーされます。

誰かがこれを理解するのを手伝ってくれませんか?

4

2 に答える 2

7

問題は、location ~ \.php$ { ... }2 つの異なるルートに分割されているすべての php スクリプトの処理を が担当していることです。

root1 つのアプローチは、コンテナーに共通を使用し、server各プレフィックス ロケーション ブロック内で内部書き換えを実行することです。何かのようなもの:

location /blog {
  rewrite ^(.*\.php)$ /www$1 last;
  ...
}
location / {
  rewrite ^(.*\.php)$ /laravel/public$1 last;
  ...
}
location ~ \.php$ {
  internal;
  root /home/hamed;
  ...
}

上記は機能するはずです(ただし、シナリオでテストしていません)。

2 つ目の方法は、ネストされたロケーション ブロックを使用することです。その後、location ~ \.php$ { ... }ブロックは各アプリケーションのロケーション ブロックに複製されます。何かのようなもの:

location /blog {
  root /home/hamed/www;
  ...
  location ~ \.php$ {
    ...
  }
}
location / {
  root /home/hamed/laravel/public;
  ...
  location ~ \.php$ {
    ...
  }
}

これで、動作することがテストされました。

于 2015-12-04T14:24:53.317 に答える
4

@RichardSmith のおかげで、最終的に適切な構成を作成することができました。これが最終的な作業構成です。locationネストされたブロックと逆正規表現の組み合わせを使用して機能させる必要がありました。

server {
    listen  443 ssl;
        server_name example.com;
        root /home/hamed/laravel/public;

#        index index.html index.htm index.php;

        ssl_certificate /root/hamed/ssl.crt;
        ssl_certificate_key /root/hamed/ssl.key;

        location ~ ^/blog(.*)$ {
        index index.php;
        root /home/hamed/www/;
        try_files $uri $uri/ /blog/index.php?do=$request_uri;

        location ~ \.php$ {
                    try_files $uri =404;
                    fastcgi_split_path_info ^(.+\.php)(/.+)$;
                    #fastcgi_pass 127.0.0.1:9000;
                    fastcgi_pass unix:/var/run/php5-fpm.hamed.sock;
                    fastcgi_index index.php;
                    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                    include fastcgi_params;
            }

        }

    location ~ ^((?!\/blog).)*$ { #this regex is to match anything but `/blog`
        index index.php;
                root /home/hamed/laravel/public;
                try_files $uri $uri/ /index.php?$request_uri;
        location ~ \.php$ {
                    try_files $uri =404;
                    fastcgi_split_path_info ^(.+\.php)(/.+)$;
                    #fastcgi_pass 127.0.0.1:9000;
                    fastcgi_pass unix:/var/run/php5-fpm.hamed.sock;
                    fastcgi_index index.php;
                    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                    include fastcgi_params;
            }
        }


        error_page 404 /404.html;
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root /usr/share/nginx/html;
        }


}
于 2015-12-04T16:06:53.943 に答える