frp/conf/frpc.ini

55 lines
1.2 KiB
INI
Raw Normal View History

# [common] is integral section
2016-01-27 21:24:36 +08:00
[common]
2016-03-14 00:48:22 +08:00
server_addr = 0.0.0.0
2016-02-25 10:28:34 +08:00
server_port = 7000
2016-03-14 00:21:40 +08:00
# console or real logFile path like ./frpc.log
log_file = ./frpc.log
2016-01-27 21:24:36 +08:00
# debug, info, warn, error
log_level = info
log_max_days = 3
# for authentication
auth_token = 123
2016-06-26 22:36:07 +08:00
# for privilege mode
2016-06-28 00:21:13 +08:00
privilege_token = 12345678
2016-01-27 21:24:36 +08:00
2016-04-18 15:16:40 +08:00
# ssh is the proxy name same as server's configuration
[ssh]
# tcp | http, default is tcp
type = tcp
local_ip = 127.0.0.1
2016-03-28 11:22:36 +08:00
local_port = 22
# true or false, if true, messages between frps and frpc will be encrypted, default is false
use_encryption = true
# default is false
use_gzip = false
2016-04-18 15:16:40 +08:00
# Resolve your domain names to [server_addr] so you can use http://web01.yourdomain.com to browse web01 and http://web02.yourdomain.com to browse web02, the domains are set in frps.ini
[web01]
type = http
local_ip = 127.0.0.1
local_port = 80
use_gzip = true
2016-04-18 15:16:40 +08:00
[web02]
type = http
local_ip = 127.0.0.1
local_port = 8000
2016-06-26 22:36:07 +08:00
[privilege_ssh]
# if privilege_mode is enabled, this proxy will be created automatically
privilege_mode = true
type = tcp
local_ip = 127.0.0.1
local_port = 22
use_encryption = true
use_gzip = false
remote_port = 6001
[privilege_web]
privilege_mode = true
type = http
local_ip = 127.0.0.1
local_port = 80
use_gzip = true
custom_domains = web03.yourdomain.com