web-dev-qa-db-ja.com

サブフォルダー内のnginxプロジェクト

私のnginx設定に不満を感じているので、同じルートのサブディレクトリから複数のプロジェクトにサービスを提供するための設定ファイルを作成するための助けを求めています。それらはすべて同じHost値を使用しているため、これは仮想ホスティングではありません。おそらく例が私の試みを明確にするでしょう:

  • リクエスト192.168.1.1/index.phpから/var/www/public/を提供する必要があります
  • リクエスト192.168.1.1/wiki/index.phpから/var/www/wiki/public/を提供する必要があります
  • リクエスト192.168.1.1/blog/index.phpから/var/www/blog/public/を提供する必要があります

これらのプロジェクトはPHPを使用しており、fastcgiを使用しています。

私の現在の設定はvery minimalです。

server {
    listen 80 default;
    server_name localhost;

    access_log /var/log/nginx/localhost.access.log;

    root /var/www;
    index index.php index.html;

    location ~ \.php$ {
        fastcgi_pass  127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME /var/www$fastcgi_script_name;
        include fastcgi_params;
    }
}

aliasrewriteを使用してさまざまなことを試しましたが、fastcgi用に正しく設定できませんでした。ロケーションブロックを記述してrootindexSCRIPT_FILENAMEなどを複製するよりも雄弁な方法があるはずです。

私を正しい方向に導くための指針はありがたいです。

10
Timothy

プロジェクトは実際には同じルートにないので、これを使用する必要がありますこれには複数の場所を使用します。

location /wiki {
    root /var/www/wiki/public;
}

location ~ /wiki/.+\.php$ {
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_param  SCRIPT_FILENAME /var/www/wiki/public$fastcgi_script_name;
}

location /blog {
    root /var/www/blog/public;
}

location ~ /blog/.+\.php$ {
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_param  SCRIPT_FILENAME /var/www/blog/public$fastcgi_script_name;
}

また、fastcgi_indexをfastcgi_paramsファイルに入れてサーバーレベルでインクルードすることで、phpの場所をできるだけ小さく保つことができます。

16

場所とエイリアスで解決:


location / {
   root /var/www/public;
   index index.php;
}
location /blog/ {
   alias /var/www/blog/public/;
   index index.php;
}
location /wiki/ {
   alias /var/www/wiki/public/;
   index index.php;
}

location ~ \.php$ {
   #your fastcgi configuration here 
}
7
Vadim

詳細は http://programmersjunk.blogspot.com/2013/11/nginx-multiple-sites-in-subdirectories.html にあります。

    location /Site1/ {
            root /usr/share/nginx/www/Site1;
           try_files $uri $uri/ /index.php?$query_string;
    }

    # the images need a seperate entry as we dont want to concatenate that with index.php      
    location ~ /Site1/.+\.(jpg|jpeg|gif|css|png|js|ico|xml)$ {
            root /usr/share/nginx/www/Site1;
    }
    # pass the PHP scripts to FastCGI server
    location ~ /Site1/.+\.php$ {
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            allow 127.0.0.1;
    #       # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
    #       # With php5-fpm:
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            fastcgi_index index.php;
    }

location /Site3/ {
            root    /usr/share/nginx/www/Site3;
    }

    # pass the PHP scripts to FastCGI server
    location ~ /Site3/.+\.php$ {
            allow 127.0.0.1;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            include fastcgi_params;
            #we are directly using the $request_filename as its a single php script
            fastcgi_param SCRIPT_FILENAME $request_filename;
    }
0
appcoder