From 5a98338f84f8258c2c6ffd8d5fc286ac7eeff5de Mon Sep 17 00:00:00 2001 From: Umputun Date: Sun, 11 Apr 2021 23:18:06 -0500 Subject: [PATCH] fix separator conflict between env and static rule parts --- app/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.go b/app/main.go index 97150f8..690faaf 100644 --- a/app/main.go +++ b/app/main.go @@ -67,7 +67,7 @@ var opts struct { Static struct { Enabled bool `long:"enabled" env:"ENABLED" description:"enable static provider"` - Rules []string `long:"rule" env:"RULES" description:"routing rules" env-delim:","` + Rules []string `long:"rule" env:"RULES" description:"routing rules" env-delim:";"` } `group:"static" namespace:"static" env-namespace:"STATIC"` NoSignature bool `long:"no-signature" env:"NO_SIGNATURE" description:"disable reproxy signature headers"`