启用了PHP的Nginx通配符子域

前端之家收集整理的这篇文章主要介绍了启用了PHP的Nginx通配符子域前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我很想将Nginx设置为使用Laravel / PHP的几个不同项目的登台服务器.我的想法是在/ var / www下我会有不同数量的子目录,每个子目录都以subdomain.example.com格式访问.

考虑一下这个非常简单的Nginx配置:

server {
        listen 80 default_server;
        listen [::]:80 default_server ipv6only=on;
        index index.html index.htm;
        server_name ~^(.*)\.example\.com$;
        root /var/www/$1;
}

我的目录结构设置为:

/var/www
    /subdomain1
    /subdomain2
    /subdomain3

如果我访问subdomain1.example.com,subdomain2.example.com或subdomain3.example.com,则会提供相关子目录中的index.html文件.到目前为止完美无缺.

当我尝试使用PHP文件时,问题出现了.首先,我将index指令更改为index index.PHP,然后在server指令中添加以下内容

location ~ \.PHP${
        try_files $uri /index.PHP =404;
        fastcgi_split_path_info ^(.+\.PHP)(/.+)$;
        fastcgi_pass unix:/var/run/PHP5-fpm.sock;
        fastcgi_index index.PHP;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

Nginx接受此配置没有任何问题.但是,如果我尝试访问subdomain1.example.com然后我从Nginx收到404错误,但错误日志中没有任何内容.

如果我将try_files指令更改为try_files $uri /subdomain1/index.PHP = 404;然后它正确执行subdomain1目录中的index.PHP文件,但这显然违背了目的,因为我希望它作为通配符工作.问题是我无法访问location指令中父指令的$1变量.

我觉得我必须在这里遗漏一些非常明显的东西.任何人?

我想我之前已经看过这个,因为root有一个后期绑定,而数字捕获超出了范围.尝试使用命名捕获.就像是:
server {
    ...
    server_name ~^(?<subdomain>.+)\.example\.com$;
    root /var/www/$subdomain;

    index index.PHP;

    location / {
        try_files $uri $uri/ /index.PHP;
    }

    location ~ \.PHP${
        try_files $uri /index.PHP;
        ...
    }
}
原文链接:https://www.f2er.com/php/139219.html

猜你在找的PHP相关文章