Browse Source

update

pull/187/head
fatedier 8 years ago
parent
commit
ddbb56ee8f
  1. 6
      conf/frpc.ini
  2. 8
      src/models/client/config.go

6
conf/frpc.ini

@ -47,10 +47,10 @@ local_ip = 127.0.0.1
local_port = 80 local_port = 80
use_gzip = true use_gzip = true
pool_count = 20 pool_count = 20
# http username and password are safety certification for http protoc # http username and password are safety certification for http protocol
# if not set, you can access this custom_domains without certification # if not set, you can access this custom_domains without certification
http_username = admin http_user = admin
http_password = admin http_pwd = admin
# if domain for frps is frps.com, then you can access [web01] proxy by URL http://test.frps.com # if domain for frps is frps.com, then you can access [web01] proxy by URL http://test.frps.com
subdomain = test subdomain = test

8
src/models/client/config.go

@ -156,13 +156,13 @@ func LoadConf(confFile string) (err error) {
if ok { if ok {
proxyClient.HostHeaderRewrite = tmpStr proxyClient.HostHeaderRewrite = tmpStr
} }
// http_username // http_user
tmpStr, ok = section["http_username"] tmpStr, ok = section["http_user"]
if ok { if ok {
proxyClient.HttpUserName = tmpStr proxyClient.HttpUserName = tmpStr
} }
// http_password // http_pwd
tmpStr, ok = section["http_password"] tmpStr, ok = section["http_pwd"]
if ok { if ok {
proxyClient.HttpPassWord = tmpStr proxyClient.HttpPassWord = tmpStr
} }

Loading…
Cancel
Save