mirror of
https://github.com/openziti/zrok.git
synced 2025-01-10 16:08:20 +01:00
Merge branch 'main' into limits-classes
This commit is contained in:
commit
bb63921e42
@ -4,6 +4,8 @@
|
|||||||
|
|
||||||
FEATURE: New "limits classes" limits implementation (https://github.com/openziti/zrok/issues/606)
|
FEATURE: New "limits classes" limits implementation (https://github.com/openziti/zrok/issues/606)
|
||||||
|
|
||||||
|
FIX: Correct the syntax for the Docker and Linux zrok-share "frontdoor" service that broke OAuth email address pattern matching
|
||||||
|
|
||||||
## v0.4.30
|
## v0.4.30
|
||||||
|
|
||||||
FIX: Fix to the Node.js release process to properly support releasing on a tag.
|
FIX: Fix to the Node.js release process to properly support releasing on a tag.
|
||||||
|
@ -133,7 +133,7 @@ if [[ -n "${ZROK_OAUTH_PROVIDER:-}" ]]; then
|
|||||||
ZROK_CMD+=" --oauth-provider ${ZROK_OAUTH_PROVIDER}"
|
ZROK_CMD+=" --oauth-provider ${ZROK_OAUTH_PROVIDER}"
|
||||||
if [[ -n "${ZROK_OAUTH_EMAILS:-}" ]]; then
|
if [[ -n "${ZROK_OAUTH_EMAILS:-}" ]]; then
|
||||||
for EMAIL in ${ZROK_OAUTH_EMAILS}; do
|
for EMAIL in ${ZROK_OAUTH_EMAILS}; do
|
||||||
ZROK_CMD+=" --oauth-email-address-patterns '${EMAIL}'"
|
ZROK_CMD+=" --oauth-email-address-patterns ${EMAIL}"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
elif [[ -n "${ZROK_BASIC_AUTH:-}" ]]; then
|
elif [[ -n "${ZROK_BASIC_AUTH:-}" ]]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user