2016-02-29 07:56:47 +01:00
|
|
|
# [common] is integral section
|
2016-01-27 14:24:36 +01:00
|
|
|
[common]
|
|
|
|
bind_addr = 0.0.0.0
|
|
|
|
bind_port = 7000
|
2016-05-18 18:04:19 +02:00
|
|
|
# if you want to support virtual host, you must set the http port for listening (optional)
|
2016-04-18 09:16:40 +02:00
|
|
|
vhost_http_port = 80
|
2016-06-13 16:19:24 +02:00
|
|
|
vhost_https_port = 443
|
2016-06-03 11:51:45 +02:00
|
|
|
# if you want to configure or reload frps by dashboard, dashboard_port must be set
|
2016-05-18 18:04:19 +02:00
|
|
|
dashboard_port = 7500
|
2016-08-10 14:18:36 +02:00
|
|
|
# dashboard assets directory(only for debug mode)
|
|
|
|
assets_dir = ./assets
|
2016-03-13 17:21:40 +01:00
|
|
|
# console or real logFile path like ./frps.log
|
2016-04-11 05:21:35 +02:00
|
|
|
log_file = ./frps.log
|
2016-01-27 14:24:36 +01:00
|
|
|
# debug, info, warn, error
|
2016-04-11 05:21:35 +02:00
|
|
|
log_level = info
|
2016-05-03 15:41:57 +02:00
|
|
|
log_max_days = 3
|
2016-06-27 18:21:13 +02:00
|
|
|
# if you enable privilege mode, frpc can create a proxy without pre-configure in frps when privilege_token is correct
|
2016-06-26 16:36:07 +02:00
|
|
|
privilege_mode = true
|
2016-06-27 18:21:13 +02:00
|
|
|
privilege_token = 12345678
|
2016-07-30 20:17:10 +02:00
|
|
|
privilege_allow_ports = 2000-3000,3001,3003,4000-50000
|
2016-07-29 17:08:00 +02:00
|
|
|
# pool_count in each proxy will change to max_pool_count if they exceed the maximum value
|
|
|
|
max_pool_count = 100
|
2016-01-27 14:24:36 +01:00
|
|
|
|
2016-04-18 09:16:40 +02:00
|
|
|
# ssh is the proxy name, client will use this name and auth_token to connect to server
|
|
|
|
[ssh]
|
|
|
|
type = tcp
|
2016-04-05 11:18:21 +02:00
|
|
|
auth_token = 123
|
2016-01-27 14:24:36 +01:00
|
|
|
bind_addr = 0.0.0.0
|
|
|
|
listen_port = 6000
|
2016-04-18 09:16:40 +02:00
|
|
|
|
|
|
|
[web01]
|
2016-06-24 09:43:58 +02:00
|
|
|
# if type equals http, vhost_http_port must be set
|
|
|
|
type = http
|
2016-04-18 09:16:40 +02:00
|
|
|
auth_token = 123
|
|
|
|
# if proxy type equals http, custom_domains must be set separated by commas
|
|
|
|
custom_domains = web01.yourdomain.com,web01.yourdomain2.com
|
|
|
|
|
|
|
|
[web02]
|
2016-06-24 09:43:58 +02:00
|
|
|
# if type equals https, vhost_https_port must be set
|
|
|
|
type = https
|
2016-04-18 09:16:40 +02:00
|
|
|
auth_token = 123
|
|
|
|
custom_domains = web02.yourdomain.com
|