🗒️TG api 被墙 进行反代
type
status
date
slug
summary
category
icon
password
tags
准备工作
你可以选择 CloudFlare 的 workers 进行反代,但大陆的网络你懂的,这里介绍用你自己服务器反代方式
搭建一个 TGbot api 反代,你需要:
1.一个不受 GFW 封锁的服务器(且安装好 Nginx)
2.一个域名(提前申请 SSL 证书)
NGINX 配置
编辑你 Nginx 的配置文件,在 http{} 中加上如下配置
nginx
Copy
yourDomainName
- 你准备的域名ssl_certificate
- SSL 证书路径ssl_certificate_key
- SSL 证书路径使用方式
🎉然后执行
systemctl restart nginx
回到 Nezha 将原来的https://api.telegram.org/ 替换为 https://yourDomainName/ ,即可正常推送消息防止盗用
serverIp
- Agent 的 ip 地址,你系统安装的哪个就用哪个命令,ufw iptables 都可.#ubuntu
ufw allow proto tcp from serverIp to any port 443
#centos
iptables -I INPUT -p tcp --dport 443 -j DROP
iptables -I INPUT -s serverIp -p tcp --dport 443 -j ACCEPT
Loading...