frp/conf/frps.ini

72 lines
2.2 KiB
INI
Raw Normal View History

# [common] is integral section
2016-01-27 21:24:36 +08:00
[common]
2016-08-12 00:32:33 +08:00
# A literal address or host name for IPv6 must be enclosed
# in square brackets, as in "[::1]:80", "[ipv6-host]:http" or "[ipv6-host%zone]:80"
2016-01-27 21:24:36 +08:00
bind_addr = 0.0.0.0
bind_port = 7000
2016-12-21 01:01:44 +08:00
# if you want to support virtual host, you must set the http port for listening (optional)
2016-04-18 15:16:40 +08:00
vhost_http_port = 80
2016-06-13 22:19:24 +08:00
vhost_https_port = 443
2016-12-21 01:01:44 +08:00
# if you want to configure or reload frps by dashboard, dashboard_port must be set
dashboard_port = 7500
2016-12-21 01:01:44 +08:00
# dashboard user and pwd for basic auth protect, if not set, both default value is admin
dashboard_user = admin
dashboard_pwd = admin
# dashboard assets directory(only for debug mode)
# assets_dir = ./static
2016-03-14 00:21:40 +08:00
# console or real logFile path like ./frps.log
log_file = ./frps.log
2016-12-21 01:01:44 +08:00
2016-01-27 21:24:36 +08:00
# debug, info, warn, error
log_level = info
2016-12-21 01:01:44 +08:00
log_max_days = 3
2016-12-21 01:01:44 +08:00
2016-06-28 00:21:13 +08:00
# if you enable privilege mode, frpc can create a proxy without pre-configure in frps when privilege_token is correct
2016-06-26 22:36:07 +08:00
privilege_mode = true
2016-06-28 00:21:13 +08:00
privilege_token = 12345678
2016-12-21 01:01:44 +08:00
2016-08-12 00:57:46 +08:00
# only allow frpc to bind ports you list, if you set nothing, there won't be any limit
privilege_allow_ports = 2000-3000,3001,3003,4000-50000
2016-12-21 01:01:44 +08:00
2016-07-29 23:08:00 +08:00
# pool_count in each proxy will change to max_pool_count if they exceed the maximum value
max_pool_count = 100
2016-12-21 01:01:44 +08:00
# authentication_timeout means the timeout interval (seconds) when the frpc connects frps
# if authentication_timeout is zero, the time is not verified, default is 900s
authentication_timeout = 900
# if subdomain_host is not empty, you can set subdomain when type is http or https in frpc's configure file
# when subdomain is test, the host used by routing is test.frps.com
subdomain_host = frps.com
2016-01-27 21:24:36 +08:00
2016-04-18 15:16:40 +08:00
# ssh is the proxy name, client will use this name and auth_token to connect to server
[ssh]
type = tcp
auth_token = 123
2016-01-27 21:24:36 +08:00
bind_addr = 0.0.0.0
listen_port = 6000
2016-04-18 15:16:40 +08:00
2016-12-19 01:22:21 +08:00
[dns]
type = udp
auth_token = 123
bind_addr = 0.0.0.0
2016-12-19 01:48:57 +08:00
listen_port = 5353
2016-12-19 01:22:21 +08:00
2016-04-18 15:16:40 +08:00
[web01]
2016-06-24 15:43:58 +08:00
# if type equals http, vhost_http_port must be set
type = http
2016-04-18 15:16:40 +08: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 15:43:58 +08:00
# if type equals https, vhost_https_port must be set
type = https
2016-04-18 15:16:40 +08:00
auth_token = 123
custom_domains = web02.yourdomain.com