2017-05-25 01:10:58 +08:00
|
|
|
# [common] is integral section
|
|
|
|
[common]
|
|
|
|
# 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"
|
|
|
|
bind_addr = 0.0.0.0
|
|
|
|
bind_port = 7000
|
|
|
|
|
2017-10-24 18:20:07 +08:00
|
|
|
# udp port to help make udp hole to penetrate nat
|
|
|
|
bind_udp_port = 7001
|
|
|
|
|
2017-06-14 01:23:34 +08:00
|
|
|
# udp port used for kcp protocol, it can be same with 'bind_port'
|
|
|
|
# if not set, kcp is disabled in frps
|
|
|
|
kcp_bind_port = 7000
|
|
|
|
|
2017-07-05 01:40:01 +08:00
|
|
|
# specify which address proxy will listen for, default value is same with bind_addr
|
|
|
|
# proxy_bind_addr = 127.0.0.1
|
|
|
|
|
2017-05-25 01:10:58 +08:00
|
|
|
# if you want to support virtual host, you must set the http port for listening (optional)
|
2018-05-06 04:27:30 +08:00
|
|
|
# Note: http port and https port can be same with bind_port
|
2017-05-25 01:10:58 +08:00
|
|
|
vhost_http_port = 80
|
|
|
|
vhost_https_port = 443
|
|
|
|
|
2018-08-08 11:18:38 +08:00
|
|
|
# response header timeout(seconds) for vhost http server, default is 60s
|
|
|
|
# vhost_http_timeout = 60
|
|
|
|
|
2017-11-28 15:56:34 +08:00
|
|
|
# set dashboard_addr and dashboard_port to view dashboard of frps
|
|
|
|
# dashboard_addr's default value is same with bind_addr
|
|
|
|
# dashboard is available only if dashboard_port is set
|
|
|
|
dashboard_addr = 0.0.0.0
|
2017-05-25 01:10:58 +08:00
|
|
|
dashboard_port = 7500
|
|
|
|
|
2018-04-10 17:46:49 +08:00
|
|
|
# dashboard user and passwd for basic auth protect, if not set, both default value is admin
|
2017-05-25 01:10:58 +08:00
|
|
|
dashboard_user = admin
|
2018-05-06 04:08:36 +08:00
|
|
|
dashboard_pwd = admin
|
2017-05-25 01:10:58 +08:00
|
|
|
|
|
|
|
# dashboard assets directory(only for debug mode)
|
|
|
|
# assets_dir = ./static
|
|
|
|
# console or real logFile path like ./frps.log
|
|
|
|
log_file = ./frps.log
|
|
|
|
|
|
|
|
# trace, debug, info, warn, error
|
|
|
|
log_level = info
|
|
|
|
|
|
|
|
log_max_days = 3
|
|
|
|
|
2018-04-10 17:46:49 +08:00
|
|
|
# auth token
|
|
|
|
token = 12345678
|
2017-05-25 01:10:58 +08:00
|
|
|
|
|
|
|
# heartbeat configure, it's not recommended to modify the default value
|
|
|
|
# the default value of heartbeat_timeout is 90
|
|
|
|
# heartbeat_timeout = 90
|
|
|
|
|
|
|
|
# only allow frpc to bind ports you list, if you set nothing, there won't be any limit
|
2018-04-24 01:26:05 +08:00
|
|
|
allow_ports = 2000-3000,3001,3003,4000-50000
|
2017-05-25 01:10:58 +08:00
|
|
|
|
|
|
|
# pool_count in each proxy will change to max_pool_count if they exceed the maximum value
|
|
|
|
max_pool_count = 5
|
|
|
|
|
2018-01-26 14:56:55 +08:00
|
|
|
# max ports can be used for each client, default value is 0 means no limit
|
|
|
|
max_ports_per_client = 0
|
|
|
|
|
2017-05-25 01:10:58 +08:00
|
|
|
# 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
|
|
|
|
|
|
|
|
# if tcp stream multiplexing is used, default is true
|
|
|
|
tcp_mux = true
|
2019-04-25 12:29:34 +08:00
|
|
|
|
|
|
|
# custom 404 page for HTTP requests
|
|
|
|
# custom_404_page = /path/to/404.html
|