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


10

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

  • 要求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を使用しています。

私の現在の構成は非常に最小限です。

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;
    }
}

私はいろいろなことを試してみたaliasし、rewriteしかし、FastCGIのために正しく設定物事を取得することができませんでした。場所のブロックを書き込み、複製よりも雄弁な方法があるはずと思われるrootindexSCRIPT_FILENAME、など

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


好奇心から、/ var / www / public / wiki / foo.htmlにあるファイルにアクセスできると思われるURLはどれですか。
natacado

それは良い点です、ナタカド。メインの公開ディレクトリは、いくつかの雑多なファイルであり、実際には決して使用すべきではありません。これは内部設定なので、私が制御します。うまく行けばいいのですが:)
Timothy

回答:


16

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

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の場所をできるだけ小さく保つことができます。


1
これはまさに、私が避けたい構成のタイプでした...重複。悲しいかな、これが「適切」である場合、私はそれを行います。マーティン、助けてくれてありがとう!
ティモシー、

7

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


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 
}


0

これが私が試したものです、詳細は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;
    }
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.