具有多个位置块的 nginx 配置

nginx configuration with multiple location blocks

我正在尝试将 nginx 配置为从 2 个不同的位置提供 2 个不同的 php 脚本。配置如下。

  1. 我有一个 Laravel 安装,它位于 /home/hamed/laravel 中,应该在其中提供其 public 目录。
  2. 我在 /home/hamed/www/blog 中安装了 Wordpress。

这是我的 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 访问 wordpress 部分时,laravel 安装仍然接管了请求。

现在我尝试用 alias 替换 location 块中的 root 指令但无济于事。

根据 this guideindex 指令或 try_fileslocation 内会触发内部重定向,我怀疑这会导致此行为。

有人能帮我解决这个问题吗?

问题是 location ~ \.php$ { ... } 负责处理所有 php 脚本,这些脚本分为两个不同的根。

一种方法是对 server 容器使用通用的 root 并在每个前缀位置块内执行内部重写。类似于:

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

以上应该有效(但我没有用你的场景测试过)。

第二种方法是使用嵌套位置块。然后 location ~ \.php$ { ... } 块被复制到每个应用程序的位置块中。类似于:

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

现在已经测试了一个可以工作。

感谢@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;
        }


}