12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- serverAddr = "152.136.170.74"
- serverPort = 7000
- [[proxies]]
- name = "php-tcp-mysql"
- type = "tcp"
- localIP = "127.0.0.1"
- localPort = 3306
- remotePort = 3306
- [[proxies]]
- name = "php-tcp-redis"
- type = "tcp"
- localIP = "127.0.0.1"
- localPort = 6379
- remotePort = 6379
- [[proxies]]
- name = "phphttp80"
- type = "tcp"
- localIP = "127.0.0.1"
- localPort = 80
- remotePort = 80
- [[proxies]]
- name = "xiaoding_htts2http"
- type = "https"
- customDomains = [
- "msj.xiaodingyun.cn",
- "msjapp.xiaodingyun.cn",
- "msjadmin.xiaodingyun.cn"
- # 往下面增加你的域名即可
- ]
- [proxies.plugin]
- type = "https2http"
- localAddr = "127.0.0.1:80"
- # HTTPS 证书相关的配置
- crtPath = "/root/frp/cert.pem"
- keyPath = "/root/frp/key.pem"
- #hostHeaderRewrite = "127.0.0.1"
- requestHeaders.set.x-from-where = "frp"
|