2016-08-16 09:09:32 +02:00
# [common] is integral section
2016-01-27 14:24:36 +01:00
[common]
2016-08-16 09:09:32 +02: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-03-13 17:48:22 +01:00
server_addr = 0.0.0.0
2016-02-25 03:28:34 +01:00
server_port = 7000
2016-08-14 18:55:22 +02:00
# if you want to connect frps by http proxy, you can set http_proxy here or in global environment variables
# http_proxy = http://user:pwd@192.168.1.128:8080
2016-03-13 17:21:40 +01:00
# console or real logFile path like ./frpc.log
2016-04-11 05:21:35 +02:00
log_file = ./frpc.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-04-05 11:18:21 +02:00
# for authentication
auth_token = 123
2016-06-26 16:36:07 +02:00
# for privilege mode
2016-06-27 18:21:13 +02:00
privilege_token = 12345678
2016-01-27 14:24:36 +01:00
2016-04-18 09:16:40 +02:00
# ssh is the proxy name same as server's configuration
[ssh]
# tcp | http, default is tcp
type = tcp
2016-02-29 05:38:45 +01:00
local_ip = 127.0.0.1
2016-03-28 05:22:36 +02:00
local_port = 22
2016-03-31 12:48:18 +02:00
# true or false, if true, messages between frps and frpc will be encrypted, default is false
use_encryption = true
2016-06-24 07:12:34 +02:00
# default is false
use_gzip = false
2016-07-29 17:08:00 +02:00
# connections will be established in advance, default value is zero
pool_count = 10
2016-04-18 09:16:40 +02:00
2016-12-18 18:22:21 +01:00
[dns]
type = udp
2016-12-18 18:48:57 +01:00
local_ip = 114.114.114.114
2016-12-18 18:22:21 +01:00
local_port = 53
2016-04-18 09:16:40 +02:00
# Resolve your domain names to [server_addr] so you can use http://web01.yourdomain.com to browse web01 and http://web02.yourdomain.com to browse web02, the domains are set in frps.ini
[web01]
type = http
local_ip = 127.0.0.1
local_port = 80
2016-06-24 07:12:34 +02:00
use_gzip = true
2016-07-29 17:08:00 +02:00
pool_count = 20
2016-09-06 11:56:09 +02:00
# http username and password are safety certification for http protoc
# if not set, you can access this custom_domains without certification
http_username = admin
http_password = admin
2016-11-05 07:15:16 +01:00
# if domain for frps is frps.com, then you can access [web01] proxy by URL http://test.frps.com
subdomain = test
2016-04-18 09:16:40 +02:00
[web02]
type = http
local_ip = 127.0.0.1
local_port = 8000
2016-06-26 16:36:07 +02:00
[privilege_ssh]
# if privilege_mode is enabled, this proxy will be created automatically
privilege_mode = true
type = tcp
local_ip = 127.0.0.1
local_port = 22
use_encryption = true
use_gzip = false
remote_port = 6001
[privilege_web]
privilege_mode = true
type = http
local_ip = 127.0.0.1
local_port = 80
use_gzip = true
custom_domains = web03.yourdomain.com
2016-07-25 18:18:19 +02:00
host_header_rewrite = example.com
2016-11-05 07:15:16 +01:00
subdomain = dev