This commit is contained in:
fatedier
2016-12-21 01:07:30 +08:00
parent 10fc6c67e0
commit ddbb56ee8f
2 changed files with 7 additions and 7 deletions

View File

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