update help and docs
This commit is contained in:
parent
ccc82546b1
commit
02eff463a1
|
@ -18,6 +18,7 @@ Dumbest HTTP proxy ever.
|
||||||
* Supports HTTP/2
|
* Supports HTTP/2
|
||||||
* Resilient to DPI (including active probing, see `hidden_domain` option for authentication providers)
|
* Resilient to DPI (including active probing, see `hidden_domain` option for authentication providers)
|
||||||
* Connecting via upstream HTTP(S)/SOCKS5 proxies (proxy chaining)
|
* Connecting via upstream HTTP(S)/SOCKS5 proxies (proxy chaining)
|
||||||
|
* systemd socket activation
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
@ -184,7 +185,7 @@ Usage of /home/user/go/bin/dumbproxy:
|
||||||
-autocert-whitelist value
|
-autocert-whitelist value
|
||||||
restrict autocert domains to this comma-separated list
|
restrict autocert domains to this comma-separated list
|
||||||
-bind-address string
|
-bind-address string
|
||||||
HTTP proxy listen address (default ":8080")
|
HTTP proxy listen address. Set empty value to use systemd socket activation. (default ":8080")
|
||||||
-cafile string
|
-cafile string
|
||||||
CA file to authenticate clients with certificates
|
CA file to authenticate clients with certificates
|
||||||
-cert string
|
-cert string
|
||||||
|
|
2
main.go
2
main.go
|
@ -76,7 +76,7 @@ type CLIArgs struct {
|
||||||
|
|
||||||
func parse_args() CLIArgs {
|
func parse_args() CLIArgs {
|
||||||
var args CLIArgs
|
var args CLIArgs
|
||||||
flag.StringVar(&args.bind_address, "bind-address", ":8080", "HTTP proxy listen address")
|
flag.StringVar(&args.bind_address, "bind-address", ":8080", "HTTP proxy listen address. Set empty value to use systemd socket activation.")
|
||||||
flag.StringVar(&args.auth, "auth", "none://", "auth parameters")
|
flag.StringVar(&args.auth, "auth", "none://", "auth parameters")
|
||||||
flag.IntVar(&args.verbosity, "verbosity", 20, "logging verbosity "+
|
flag.IntVar(&args.verbosity, "verbosity", 20, "logging verbosity "+
|
||||||
"(10 - debug, 20 - info, 30 - warning, 40 - error, 50 - critical)")
|
"(10 - debug, 20 - info, 30 - warning, 40 - error, 50 - critical)")
|
||||||
|
|
Loading…
Reference in New Issue