|
|
|
@ -23,6 +23,12 @@ vhost_https_port = 443
|
|
|
|
|
# response header timeout(seconds) for vhost http server, default is 60s |
|
|
|
|
# vhost_http_timeout = 60 |
|
|
|
|
|
|
|
|
|
# TcpMuxHttpConnectPort specifies the port that the server listens for TCP |
|
|
|
|
# HTTP CONNECT requests. If the value is 0, the server will not multiplex TCP |
|
|
|
|
# requests on one single port. If it's not - it will listen on this value for |
|
|
|
|
# HTTP CONNECT requests. By default, this value is 0. |
|
|
|
|
# tcpmux_httpconnect_port = 1337 |
|
|
|
|
|
|
|
|
|
# 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 |
|
|
|
@ -49,9 +55,38 @@ log_max_days = 3
|
|
|
|
|
# disable log colors when log_file is console, default is false |
|
|
|
|
disable_log_color = false |
|
|
|
|
|
|
|
|
|
# DetailedErrorsToClient defines whether to send the specific error (with debug info) to frpc. By default, this value is true. |
|
|
|
|
detailed_errors_to_client = true |
|
|
|
|
|
|
|
|
|
# AuthenticationMethod specifies what authentication method to use authenticate frpc with frps. |
|
|
|
|
# If "token" is specified - token will be read into login message. |
|
|
|
|
# If "oidc" is specified - OIDC (Open ID Connect) token will be issued using OIDC settings. By default, this value is "token". |
|
|
|
|
authentication_method = token |
|
|
|
|
|
|
|
|
|
# AuthenticateHeartBeats specifies whether to include authentication token in heartbeats sent to frps. By default, this value is false. |
|
|
|
|
authenticate_heartbeats = false |
|
|
|
|
|
|
|
|
|
# AuthenticateNewWorkConns specifies whether to include authentication token in new work connections sent to frps. By default, this value is false. |
|
|
|
|
authenticate_new_work_conns = false |
|
|
|
|
|
|
|
|
|
# auth token |
|
|
|
|
token = 12345678 |
|
|
|
|
|
|
|
|
|
# OidcClientId specifies the client ID to use to get a token in OIDC authentication if AuthenticationMethod == "oidc". |
|
|
|
|
# By default, this value is "". |
|
|
|
|
oidc_client_id = |
|
|
|
|
|
|
|
|
|
# OidcClientSecret specifies the client secret to use to get a token in OIDC authentication if AuthenticationMethod == "oidc". |
|
|
|
|
# By default, this value is "". |
|
|
|
|
oidc_client_secret = |
|
|
|
|
|
|
|
|
|
# OidcAudience specifies the audience of the token in OIDC authentication if AuthenticationMethod == "oidc". By default, this value is "". |
|
|
|
|
oidc_audience = |
|
|
|
|
|
|
|
|
|
# OidcTokenEndpointUrl specifies the URL which implements OIDC Token Endpoint. |
|
|
|
|
# It will be used to get an OIDC token if AuthenticationMethod == "oidc". By default, this value is "". |
|
|
|
|
oidc_token_endpoint_url = |
|
|
|
|
|
|
|
|
|
# heartbeat configure, it's not recommended to modify the default value |
|
|
|
|
# the default value of heartbeat_timeout is 90 |
|
|
|
|
# heartbeat_timeout = 90 |
|
|
|
@ -65,6 +100,9 @@ max_pool_count = 5
|
|
|
|
|
# max ports can be used for each client, default value is 0 means no limit |
|
|
|
|
max_ports_per_client = 0 |
|
|
|
|
|
|
|
|
|
# TlsOnly specifies whether to only accept TLS-encrypted connections. By default, the value is false. |
|
|
|
|
tls_only = false |
|
|
|
|
|
|
|
|
|
# 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 |
|
|
|
|