Spaces:
Runtime error
Runtime error
| [server] | |
| # 服务器监听地址 | |
| bind_addr = 0.0.0.0 | |
| # 服务器端口 | |
| bind_port = 7000 | |
| # 服务器私钥路径 | |
| private_key_path = ./keys/server.key | |
| [client] | |
| # 服务器地址 | |
| server_addr = 127.0.0.1 | |
| # 服务器端口 | |
| server_port = 7000 | |
| # 客户端私钥路径 | |
| private_key_path = ./keys/client.key | |
| [proxy] | |
| # 本地服务地址 | |
| local_addr = 127.0.0.1 | |
| # 本地服务端口 | |
| local_port = 8080 | |
| # 代理类型 (tcp, udp, http, https) | |
| proxy_type = tcp | |
| # 代理名称 | |
| proxy_name = test_proxy | |
| # 是否启用加密 | |
| encryption_enabled = true |