多个静态文件目录,单个 PHP FPM 服务器

多个静态文件目录,单个 PHP FPM 服务器

我有两个目录需要用来提供静态资产:

  1. /srv/web:静态资产,包括图像、JavaScript、HTML 等。
  2. /srv/php:动态 PHP 脚本以及一些静态资产。

我正在使用 NGINX 并已将其配置如下:

server {
    listen 80;
    server_name _;

    # root /;
    index index.php index.html index.htm;
    try_files /srv/web/$uri /srv/php/$uri =404;

    location ~ \.php$ {
        root /srv/php;
        try_files $uri =404;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
#       fastcgi_param SCRIPT_FILENAME /srv/php$fastcgi_script_name;
        include fastcgi_params;
    }
}

我在 Ubuntu 14.04 上,PHP FPM 包版本是 5.5.9,NGINX 包版本是 1.4.6。

这里的简单目标是首先提供静态文件/srv/web,如果失败/srv/php,则返回 404。所有以 结尾的文件\.php$都将通过 Unix 套接字从 PHP FPM 请求,这是可行的。

我目前遇到的问题是index上的指令server没有按计划工作。我index.html在 中有一个文件/srv/web,当我这样做时

curl -is http://localhost/

我收到 404。

这是设置具有多个文件系统文件夹以与 PHP 一起提供服务的 NGINX 站点的最理想方式吗?您对我的静态索引为何不起作用有任何想法吗?


更新

根据下面 AD7six 的回答,我已更新我的配置,如下所示:

server {
    listen 80;
    server_name _; # listen at all host names

    # serve static files first from /srv/web, then from /srv/php, and any dynamic PHP files from
    # FastCGI/FPM at the Unix socket.
    location / {
        root /srv/web;
        index index.html index.htm;
        try_files $uri $uri/ @php;
    }

    location @php {
        root /srv/php;
        index index.php;
        try_files $uri $uri/ =404;
    }

    location ~ \.php$ {
        root /srv/php;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /srv/php/$fastcgi_script_name;
        include fastcgi_params;
    }
}

我的目录列表如下:

/srv/
|-- php
|   |-- demo.php
|   |-- index.php
|   `-- phpstatic.txt
`-- web
    |-- static.html
    `-- subdir
        `-- index.html

3 directories, 5 files

获取静态文件和 PHP 文件的工作正常,/subdir/使用其索引获取也可以正常工作,但如果我 GET /,则会收到 403 禁止访问错误,并且 nginx 会抱怨目录列表:

2015/08/24 21:50:59 [error] 9159#0: *7 directory index of "/srv/web/" is forbidden, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", host: "localhost"

不确定为什么会失败,但至少看起来是有进展的。

答案1

多个根不会这样工作

使用此配置:

server {
    # root /;
    index index.php index.html index.htm;
    try_files /srv/web/$uri /srv/php/$uri =404;

没有使用索引指令的请求处理,因为请求必须与文件匹配。使用调试日志可以确认这一点:

2015/08/24 08:12:11 [debug] 17173#0: *26 try files phase: 13
2015/08/24 08:12:11 [debug] 17173#0: *26 http script copy: "/srv/web/"
2015/08/24 08:12:11 [debug] 17173#0: *26 http script var: "/"
2015/08/24 08:12:11 [debug] 17173#0: *26 trying to use file: "/srv/web//" "/srv/web//"
2015/08/24 08:12:11 [debug] 17173#0: *26 http script copy: "/srv/php/"
2015/08/24 08:12:11 [debug] 17173#0: *26 http script var: "/"
2015/08/24 08:12:11 [debug] 17173#0: *26 trying to use file: "/srv/php//" "/srv/php//"
2015/08/24 08:12:11 [debug] 17173#0: *26 trying to use file: "=404" "=404"

使用try_files查找目录的指令如下:

try_files /srv/web/$uri /srv/web/uri/ /srv/php/$uri /srv/php/$uri/ =404;

也不起作用:

2015/08/24 08:16:17 [debug] 17651#0: *33 http script copy: "/srv/web/"
2015/08/24 08:16:17 [debug] 17651#0: *33 http script var: "/srv/web//index.html"
2015/08/24 08:16:17 [debug] 17651#0: *33 trying to use file: "/srv/web//srv/web//index.html" "/srv/web//srv/web//index.html"
2015/08/24 08:16:17 [debug] 17651#0: *33 http script copy: "/srv/web/"
2015/08/24 08:16:17 [debug] 17651#0: *33 http script var: "/srv/web//index.html"
2015/08/24 08:16:17 [debug] 17651#0: *33 trying to use dir: "/srv/web//srv/web//index.html" "/srv/web//srv/web//index.html"
2015/08/24 08:16:17 [debug] 17651#0: *33 http script copy: "/srv/php/"
2015/08/24 08:16:17 [debug] 17651#0: *33 http script var: "/srv/web//index.html"
2015/08/24 08:16:17 [debug] 17651#0: *33 trying to use file: "/srv/php//srv/web//index.html" "/srv/php//srv/web//index.html"
2015/08/24 08:16:17 [debug] 17651#0: *33 http script copy: "/srv/php/"
2015/08/24 08:16:17 [debug] 17651#0: *33 http script var: "/srv/web//index.html"
2015/08/24 08:16:17 [debug] 17651#0: *33 trying to use dir: "/srv/php//srv/web//index.html" "/srv/php//srv/web//index.html"
2015/08/24 08:16:17 [debug] 17651#0: *33 trying to use file: "=404" "=404"

请注意,“根”是混乱的,try_files需要一个 url 而不是文件路径。我建议不要继续尝试使用这种解决方案 - 尤其是不是将根设置/潜在允许访问服务器上的任何文件。

使用两个位置块

相反,让事情变得简单。此配置将提供所有静态内容:

    root /srv/web;
    index index.html;
    try_files $uri $uri/;

此配置提供所有 php 内容:

    root /srv/php;
    index index.php;
    try_files $uri $uri/;

把它们放在一起:

location / {
    root /srv/web;
    index index.html;
    try_files $uri $uri/ @php;
    error_page 403 = @php; # see note below
}

location @php {
    root /srv/php;
    index index.php;
    try_files $uri $uri/ =404;
}

location ~ \.php$ {
    # as before
}

/srv/web一个问题是,在这种设置下,与文件夹匹配的请求没有index.html文件将引发 403 错误(因为请求的是目录,而没有目录索引文件)。要允许 php 处理这些请求 - 必须将 403 错误重定向到 php 处理程序。

相关内容