带有PHP的Nginx子目录根

Bob*_*Bob 3 php nginx nginx-location

我在 docker 容器中运行 nginx。我想要一个子目录/web/来访问我的个人文件和项目。它还应该支持 php。

下面是我正在运行但domain-a.com/web一直导致 404。PHP 被确认工作,因为相同的 php 块在子域上工作但直接在server{}块中工作。

http {

    server {
        listen      443 ssl;
        server_name domain-a.com domain-b.com;

        # Mime types
        include /etc/nginx/confs/mime.types;

        # SSL
        include /etc/nginx/confs/nginx-ssl.conf;

        # Proxy to organizr
        # This works
        location / {
            proxy_pass http://organizr/;
            proxy_set_header Host $http_host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;

            # HTTP 1.1 support
            proxy_http_version 1.1;
            proxy_set_header Connection "";
        }

        # Root folder for my personal files/projects
        # Doesn't work
        location /web {
            index index.php index.html;
            root /etc/nginx/www;

            location ~ \.php$ {
                try_files $uri =404;
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
                fastcgi_pass php:9000;
                fastcgi_index index.php;
                include fastcgi_params;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                fastcgi_param PATH_INFO $fastcgi_path_info;
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

Ric*_*ith 6

如果您的文件在其中,/etc/nginx/www您将需要使用alias指令,而不是root指令。有关详细信息,请参阅此文档

例如:

location ^~ /web {
    index index.php index.html;
    alias /etc/nginx/www;

    if (!-e $request_filename) { rewrite ^ /web/index.php last; }

    location ~ \.php$ {
        if (!-f $request_filename) { return 404; }

        fastcgi_pass php:9000;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $request_filename;
    }
}
Run Code Online (Sandbox Code Playgroud)

使用$request_filename以获得正确的路径别名文件。由于这个问题避免try_files使用。见这种谨慎的使用。aliasif