FastTunnel/FastTunnel.Server/appsettings.json
2020-04-12 11:26:24 +08:00

19 lines
583 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"ServerSettings": {
"BindAddr": "0.0.0.0", // 可选
"BindPort": 1271, // 可选
"Domain": "test.cc", // 自定义域名web穿透必须
// 服务监听的端口号, 访问自定义域名站点时url为 http://{SubDomain}.{Domain}:{ProxyPort_HTTP}/
"ProxyPort_HTTP": 1270, // web穿透必须
"HasNginxProxy": false // 可选ngixn反向代理后可省略域名后的端口号进行访问
}
}