Search

Search IconIcon to open search

配置一个二级域名

Last updated Feb 14, 2022

# 1. 添加 DNS 解析记录

在 DNS 解析商里添加记录。

记录类型是 A
二级域名叫 a.example.com, 主机记录就填 a
记录值是服务器IP

# 2. 配置 nginx.conf

vim /etc/nginx/nginx.conf

http 中:

1
2
3
4
5
6
7
8
9
server {
    listen  80;
    server_name     www.tongluoshao.space tongluoshao.space;

    location / {
            index index.html;   # 主页文件
            root /www/tongluoshao/blogs/public;  # 主页所在目录
    }
}

# 3. 配置 HTTPS 证书

certbot –nginx

选择新添加的二级域名。