forked from fatedier/frp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support ntlm proxy set in http_proxy env (fatedier#2002)
- Loading branch information
1 parent
04dafd7
commit 710ecf4
Showing
4 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,11 @@ | |
server_addr = 0.0.0.0 | ||
server_port = 7000 | ||
|
||
# if you want to connect frps by http proxy or socks5 proxy, you can set http_proxy here or in global environment variables | ||
# if you want to connect frps by http proxy or socks5 proxy or ntlm proxy, you can set http_proxy here or in global environment variables | ||
# it only works when protocol is tcp | ||
# http_proxy = http://user:[email protected]:8080 | ||
# http_proxy = socks5://user:[email protected]:1080 | ||
# http_proxy = ntlm://user:[email protected]:2080 | ||
|
||
# console or real logFile path like ./frpc.log | ||
log_file = ./frpc.log | ||
|
@@ -46,7 +47,7 @@ user = your_name | |
login_fail_exit = true | ||
|
||
# communication protocol used to connect to server | ||
# now it supports tcp and kcp and websocket, default is tcp | ||
# now it supports tcp, kcp and websocket, default is tcp | ||
protocol = tcp | ||
|
||
# if tls_enable is true, frpc will connect frps by tls | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters