nginx动态新增域名

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

1.到你的 DNS 服务商处配置一个泛域名解析,例如 *.statuspage.cn,比如可以去dnspod解析.

2.配置 Nginx 如下

# 部分无关配置已忽略
server {
  server_name  ~^(?.+)\.statuspage.cn;
  root         /data/www/site/$subdomain;
}

3.现在你可以通过 foo.statuspage.cn 或 bar.statuspage.cn 愉快的访问了

转载于:https://my.oschina.net/kingwrcy/blog/663189

你可能感兴趣的:(nginx动态新增域名)