66

我是 Nginx 的新手,我正在尝试让子域正常工作。

我想做的是获取我的域(我们称之为example.com)并添加:

  • sub1.example.com,
  • sub2.example.com, 并且还有
  • www.example.com可用的。

我知道如何用 Apache 做到这一点,但 Nginx 是一个真正令人头疼的问题。

我正在运行 Debian 6。

我当前的 /etc/nginx/sites-enabled/example.com:

server {
    server_name www.example.com example.com;
    access_log /srv/www/www.example.com/logs/access.log;
    error_log /srv/www/www.example.com/logs/error.log;
    root /srv/www/www.example.com/public_html;

    location / {
        index  index.html index.htm;
    }

    location ~ \.php$ {
        include /etc/nginx/fastcgi_params;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /srv/www/www.example.com/public_html$fastcgi_script_name;
    }
}

它正在努力为 example.com 和 www.example.com 提供服务。

我试图在同一个文件中添加第二个服务器块,例如:

server {
        server_name www.example.com example.com;
        access_log /srv/www/www.example.com/logs/access.log;
        error_log /srv/www/www.example.com/logs/error.log;
        root /srv/www/www.example.com/public_html;

        server {
            server_name sub1.example.com;
            access_log /srv/www/example.com/logs/sub1-access.log;
            error_log /srv/www/example.com/logs/sub1-error.log;
            root /srv/www/example.com/sub1;
    }
        location / {
            index  index.html index.htm;
        }

        location ~ \.php$ {
            include /etc/nginx/fastcgi_params;
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME /srv/www/www.example.com/public_html$fastcgi_script_name;
        }
}

没运气。有任何想法吗?我非常感谢任何反馈。

4

6 回答 6

105

错误是将服务器块放入服务器块中,您应该关闭主服务器块然后为子域打开一个新的

server {
    server_name example.com;
    # the rest of the config
}
server {
    server_name sub1.example.com;
    # sub1 config
}
server {
    server_name sub2.example.com;
    # sub2 config
}
于 2013-07-10T14:00:15.010 回答
9

您只需要添加以下行来代替您的 server_name

server_name xyz.com  *.xyz.com;

并重启 Nginx。而已。

于 2014-10-20T06:53:58.550 回答
7

您必须为您的子域创建另一个带有 serverblock 的 nginx 配置文件。像这样:

/etc/nginx/sites-enabled/subdomain.example.com
于 2019-01-08T13:29:43.783 回答
6
  1. 使用sub1.example.comsub2.example.com为 DNS 提供程序中的每个添加一个字段

  2. 设置服务器。最后保留example.com

如下

server {
    server_name sub1.example.com;
    # sub1 config
}
server {
    server_name sub2.example.com;
    # sub2 config
}
server {
    server_name example.com;
    # the rest of the config
}
  1. 重启 Nginx sudo systemdctrl restart nginx
于 2020-07-07T19:05:41.050 回答
0

有一个非常可定制的解决方案,具体取决于您的服务器实现:

单个 nginx“站点”文件中有两个(或更多)子域?如果您拥有通配符 TLS 证书,那就太好了,因此想要维护一个 nginx 配置文件。都使用相同的服务但​​不同的端口?(想想同时运行的不同应用程序版本,每个版本都在本地监听不同的端口)

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;
    server_name ~^(?<sub>.+).example.com;

    # default app (the "default" ports, good for the "old" app)
    set $app 19069;
    set $app-chat 19072;

    # new app
    # new.example.com
    if ( $sub = "new" ) {
        set $app 18069;
        set $app-chat 18072;
    }
    # upstreaming
    location / {
        proxy_redirect off;
        proxy_pass http://127.0.0.1:$app;
    }

    location /longpolling {
        proxy_pass http://127.0.0.1:$app-chat;
    }

我知道性能会“糟透了”,但话又说回来,既然决定只使用一台服务器,这就像抱怨经济箱不能像公共汽车一样载人,因为这辆小车上有一个“沉重”的车顶行李架最重要的是。

正则表达式专家可能会提高这种自定义解决方案的性能,特别是因为它可以省略 CPU 昂贵的“if”条件语句。

于 2020-02-18T22:12:00.967 回答
0

也许这可以帮助遇到挑战的人,这让我整天都在努力。首先,如果您安装了 SSL,请将其删除(最好还是删除),这将有助于重置破坏子域配置的先前配置。

在 etc/nginx/.../default 文件中创建一个新的服务器块

    server {
       listen 80; 
       server_name subdomain.domain.com;

       location /{
         proxy_pass http://localhost:$port;
       }
    }
于 2021-06-09T23:08:00.780 回答