mirror of
https://github.com/caddyserver/caddy.git
synced 2026-08-04 14:58:47 +00:00
reverseproxy: Add unix+h2c Caddyfile network shortcut (#4953)
This commit is contained in:
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 != "" {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue