ACCC1380 commited on
Commit
5f4cc8e
1 Parent(s): 426ecc9

Upload frp_0.22.0_linux_amd64/frps_full.ini with huggingface_hub

Browse files
frp_0.22.0_linux_amd64/frps_full.ini ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # [common] is integral section
2
+ [common]
3
+ # A literal address or host name for IPv6 must be enclosed
4
+ # in square brackets, as in "[::1]:80", "[ipv6-host]:http" or "[ipv6-host%zone]:80"
5
+ bind_addr = 0.0.0.0
6
+ bind_port = 7000
7
+
8
+ # udp port to help make udp hole to penetrate nat
9
+ bind_udp_port = 7001
10
+
11
+ # udp port used for kcp protocol, it can be same with 'bind_port'
12
+ # if not set, kcp is disabled in frps
13
+ kcp_bind_port = 7000
14
+
15
+ # specify which address proxy will listen for, default value is same with bind_addr
16
+ # proxy_bind_addr = 127.0.0.1
17
+
18
+ # if you want to support virtual host, you must set the http port for listening (optional)
19
+ # Note: http port and https port can be same with bind_port
20
+ vhost_http_port = 80
21
+ vhost_https_port = 443
22
+
23
+ # response header timeout(seconds) for vhost http server, default is 60s
24
+ # vhost_http_timeout = 60
25
+
26
+ # set dashboard_addr and dashboard_port to view dashboard of frps
27
+ # dashboard_addr's default value is same with bind_addr
28
+ # dashboard is available only if dashboard_port is set
29
+ dashboard_addr = 0.0.0.0
30
+ dashboard_port = 7500
31
+
32
+ # dashboard user and passwd for basic auth protect, if not set, both default value is admin
33
+ dashboard_user = admin
34
+ dashboard_pwd = admin
35
+
36
+ # dashboard assets directory(only for debug mode)
37
+ # assets_dir = ./static
38
+ # console or real logFile path like ./frps.log
39
+ log_file = ./frps.log
40
+
41
+ # trace, debug, info, warn, error
42
+ log_level = info
43
+
44
+ log_max_days = 3
45
+
46
+ # auth token
47
+ token = 12345678
48
+
49
+ # heartbeat configure, it's not recommended to modify the default value
50
+ # the default value of heartbeat_timeout is 90
51
+ # heartbeat_timeout = 90
52
+
53
+ # only allow frpc to bind ports you list, if you set nothing, there won't be any limit
54
+ allow_ports = 2000-3000,3001,3003,4000-50000
55
+
56
+ # pool_count in each proxy will change to max_pool_count if they exceed the maximum value
57
+ max_pool_count = 5
58
+
59
+ # max ports can be used for each client, default value is 0 means no limit
60
+ max_ports_per_client = 0
61
+
62
+ # authentication_timeout means the timeout interval (seconds) when the frpc connects frps
63
+ # if authentication_timeout is zero, the time is not verified, default is 900s
64
+ authentication_timeout = 900
65
+
66
+ # if subdomain_host is not empty, you can set subdomain when type is http or https in frpc's configure file
67
+ # when subdomain is test, the host used by routing is test.frps.com
68
+ subdomain_host = frps.com
69
+
70
+ # if tcp stream multiplexing is used, default is true
71
+ tcp_mux = true