diff options
author | Francis Lavoie <lavofr@gmail.com> | 2020-05-21 15:09:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-21 13:09:49 -0600 |
commit | bb67e19d7bacd70a13647538c8e9820eb42090b2 (patch) | |
tree | e210b62e41bdf31da0c812268ecf7c9393799daf /modules/caddyhttp/reverseproxy | |
parent | 1dc4ec2d77f6f239f4c17e8ba754e71655796a4d (diff) |
cmd: hash-password: Fix broken terminal state on SIGINT (#3416)
* caddyauth: Fix hash-password broken terminal state on SIGINT
* caddycmd: Move TrapSignals calls to only subcommands that run long
Diffstat (limited to 'modules/caddyhttp/reverseproxy')
-rw-r--r-- | modules/caddyhttp/reverseproxy/command.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/caddyhttp/reverseproxy/command.go b/modules/caddyhttp/reverseproxy/command.go index 6de052e..a5939a2 100644 --- a/modules/caddyhttp/reverseproxy/command.go +++ b/modules/caddyhttp/reverseproxy/command.go @@ -66,6 +66,8 @@ default, all incoming headers are passed through unmodified.) } func cmdReverseProxy(fs caddycmd.Flags) (int, error) { + caddy.TrapSignals() + from := fs.String("from") to := fs.String("to") changeHost := fs.Bool("change-host-header") |