子文件夹中的 nginx 项目

子文件夹中的 nginx 项目

我对我的 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;
    }
}

我尝试了各种方法aliasrewrite但无法正确设置 fastcgi。似乎应该有一种比编写位置块和复制rootindexSCRIPT_FILENAME等更有效的方法。

任何能让我朝着正确方向前进的指示都将不胜感激。

答案1

由于你的项目实际上并不在同一个根目录中,因此你必须使用有多个位置可供使用。

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 位置较小。

答案2

通过位置+别名解决:


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 
}

答案3

这是我尝试过的,更多详细信息请访问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;
    }

相关内容