Nginx - 无需重写即可将任何子域名重定向到文件

Nginx - 无需重写即可将任何子域名重定向到文件

最近,我从 Apache 切换到 Nginx,以提高运行 Ubuntu 11.10 的 Web 服务器的性能。我一直在尝试弄清楚 Nginx 和 Apache 相比某些功能是如何工作的,但有一个问题一直困扰着我,我无法在网上找到答案。我的问题是,我需要能够将任何子域重定向(而不是重写)到一个文件,但该文件需要能够获取 URL 的子域部分,以便对该子域进行数据库查找。到目前为止,我已经能够让任何子域重写到该文件,但这样就会丢失我需要的子域的文本。

因此,例如,我希望 test.server.com 重定向到 server.com/resolve.php,但仍保留为 test.server.com。如果这不可能,我至少需要的是一些操作,例如从 test.server.com 转到 server.com/resolve.php?=test 。这些选项之一必须在 Nginx 中可用。

我现在的配置看起来像这样:

server {
    listen   80; ## listen for ipv4; this line is default and implied
    listen   [::]:80 default ipv6only=on; ## listen for ipv6

    root /usr/share/nginx/www;
    index index.php index.html index.htm;

    # Make site accessible from http://localhost/
    server_name www.server.com server.com;

    location / {
            # First attempt to serve request as file, then
            # as directory, then fall back to index.html
            try_files $uri $uri/ /index.html;
    }

    location /doc {
            root /usr/share;
            autoindex on;
            allow 127.0.0.1;

    }

    location /images {
            root /usr/share;
            autoindex off;
    }

    #error_page 404 /404.html;

    # redirect server error pages to the static page /50x.html
    #
    #error_page 500 502 503 504 /50x.html;
    #location = /50x.html {
    #       root /usr/share/nginx/www;
    #}

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #       proxy_pass http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
            fastcgi_pass unix:/tmp/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #       deny all;
    #}

    }

    server {
         listen 80 default;
         server_name *.server.com;

         rewrite ^ http://www.server.com/resolve.php;
    }

正如我之前所说,我对 Nginx 还很陌生,所以我觉得答案很简单,但网上似乎没有例子只处理重定向而不进行重写或重写包含子域部分。任何关于如何做的帮助都将不胜感激,如果有人有更好的想法来实现我需要的,我也愿意听取意见。非常感谢。

答案1

捕获子域并将其作为查询参数传递相当容易。

test.server.com --> server.com/resolve.php?sub=test

server {    
    listen 80 default;
    server_name   ~^(?<sub>.+)\.server\.com$;
    rewrite ^ http://www.server.com/resolve.php?sub=$sub
}

本质上,使用命名的正则表达式捕获将子域分配给变量,然后将该变量作为查询参数传递给重定向。

要重定向并保持相同的 server_name,本质上需要覆盖SERVER_NAME $server_namenginx 所做的默认分配(在您的 fastcgi_params 中)。困难在于在服务器块之间传递子域名。

相关内容