8

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

  1. 我有一个 Laravel 安装,它所在的目录应该 /home/hamed/laravel在其中提供服务。public
  2. 我在/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 安装接管请求来访问 wordpress 部分时。

现在我尝试替换块root内的指令但无济于事。 locationalias

根据本指南,具有index指令或try_files内部location会触发我怀疑会导致此行为的内部重定向。

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

4

2 回答 2

7

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

root一种方法是为容器使用一个公共server并在每个前缀位置块内执行内部重写。就像是:

location /blog {
  rewrite ^(.*\.php)$ /www$1 last;
  ...
}
location / {
  rewrite ^(.*\.php)$ /laravel/public$1 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$ {
    ...
  }
}

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

于 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 回答