reverseproxy: Add unix+h2c Caddyfile network shortcut (#4953)

This commit is contained in:
Francis Lavoie
2022-08-12 17:09:18 -04:00
committed by GitHub
parent f5dce84a70
commit e2a5e2293a
2 changed files with 23 additions and 0 deletions
@@ -96,6 +96,12 @@ func parseUpstreamDialAddress(upstreamAddr string) (string, string, error) {
}
}
// special case network to support both unix and h2c at the same time
if network == "unix+h2c" {
network = "unix"
scheme = "h2c"
}
// for simplest possible config, we only need to include
// the network portion if the user specified one
if network != "" {