乐知付加密服务平台

如果你有资源, 平台可以帮你实现内容变现, 无需搭建知识付费服务平台。

点击访问官方网站 https://lezhifu.cc

扫码关注公众号 乐知付加密服务平台-微信公众号
配置二级域名与nginx代理 | chenzuoli's blog

配置二级域名与nginx代理

看这里。

你在哪里买的域名,就去域名管理控制台,

  1. 查看域名详情

  2. 添加解析记录
    add

  3. 填写你想要解析的二级域名,和对应的ip地址

nginx已经代理了顶级域名,再增加一个二级域名代理,配置看这里:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 顶级域名nginx代理配置
server {
listen 443 ssl;
server_name lezhifu.cc www.lezhifu.cc;

ssl_certificate /xxx/key.pem;
ssl_certificate_key /xxx/key.key;

ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;

location / {
root /opt/;
index index.html index.htm;
}
location /admin/ {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:5000;
}
location /static/ {
root /opt/;
}
}


# 二级域名代理配置
server {
listen 443 ssl;
server_name software.lezhifu.cc;

ssl_certificate /xxx/key.pem;
ssl_certificate_key /xxx/key.key;

ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;

location / {
root /opt/software;
index index.html index.htm;
}
}

顶级域名的代码在/opt下
二级域名的代码放在/opt/software目录下

重启nginx:

1
/usr/local/nginx/sbin/nginx -s reload

好了,大家试试吧。


书山有路勤为径,学海无涯苦作舟。

欢迎关注微信公众号:【乐知付加密平台】,您的网络资源可变现
乐知付加密平台

一起学习,一起进步。

-------------本文结束感谢您的阅读-------------