mirror of https://github.com/dnomd343/echoIP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
381 B
13 lines
381 B
server {
|
|
listen 80;
|
|
server_name ip.343.re; # 改为自己的域名
|
|
include conf.d/ip-sub.func;
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
server_name ip.343.re; # 改为自己的域名
|
|
ssl_certificate /etc/ssl/certs/343.re/fullchain.pem; # 改为自己的证书
|
|
ssl_certificate_key /etc/ssl/certs/343.re/privkey.pem;
|
|
include conf.d/ip-sub.func;
|
|
}
|