From 36953453cf92d817f11913a4b8b89e84e7f6c2f7 Mon Sep 17 00:00:00 2001 From: Leif Battermann Date: Thu, 28 May 2026 08:38:42 +0000 Subject: [PATCH 1/3] enable basic auth for domain-registration endpoints on test env --- charts/nginz/values.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/charts/nginz/values.yaml b/charts/nginz/values.yaml index 2e4e3272bd..5d0db2d1c4 100644 --- a/charts/nginz/values.yaml +++ b/charts/nginz/values.yaml @@ -551,6 +551,36 @@ nginx_conf: envs: - all disable_zauth: true + - path: /i/domain-registration/([^/]*)/lock$ + envs: + - all + disable_zauth: true + basic_auth: true + versioned: false + - path: /i/domain-registration/([^/]*)/unlock$ + envs: + - all + disable_zauth: true + basic_auth: true + versioned: false + - path: /i/domain-registration/([^/]*)/preauthorize$ + envs: + - all + disable_zauth: true + basic_auth: true + versioned: false + - path: /i/domain-registration/([^/]*)/unauthorize$ + envs: + - all + disable_zauth: true + basic_auth: true + versioned: false + - path: /i/domain-registration/([^/]*)$ + envs: + - all + disable_zauth: true + basic_auth: true + versioned: false - path: /domain-verification/([^/]*)/team/challenges/([^/]*) envs: - all From 2cd1a846901e118d50e7601bb0a154393f9d1c72 Mon Sep 17 00:00:00 2001 From: Leif Battermann Date: Thu, 28 May 2026 08:41:06 +0000 Subject: [PATCH 2/3] changelog --- changelog.d/5-internal/basic-auth-for-test-env | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/5-internal/basic-auth-for-test-env diff --git a/changelog.d/5-internal/basic-auth-for-test-env b/changelog.d/5-internal/basic-auth-for-test-env new file mode 100644 index 0000000000..86ea4fe1f1 --- /dev/null +++ b/changelog.d/5-internal/basic-auth-for-test-env @@ -0,0 +1 @@ +Internal `/i/domain-registration` API made available for testing From 81f35564a57ad14c79aea03d5958571f111b53f5 Mon Sep 17 00:00:00 2001 From: Leif Battermann Date: Thu, 28 May 2026 08:47:14 +0000 Subject: [PATCH 3/3] fix env --- charts/nginz/values.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/nginz/values.yaml b/charts/nginz/values.yaml index 5d0db2d1c4..10e99be34c 100644 --- a/charts/nginz/values.yaml +++ b/charts/nginz/values.yaml @@ -553,31 +553,31 @@ nginx_conf: disable_zauth: true - path: /i/domain-registration/([^/]*)/lock$ envs: - - all + - staging disable_zauth: true basic_auth: true versioned: false - path: /i/domain-registration/([^/]*)/unlock$ envs: - - all + - staging disable_zauth: true basic_auth: true versioned: false - path: /i/domain-registration/([^/]*)/preauthorize$ envs: - - all + - staging disable_zauth: true basic_auth: true versioned: false - path: /i/domain-registration/([^/]*)/unauthorize$ envs: - - all + - staging disable_zauth: true basic_auth: true versioned: false - path: /i/domain-registration/([^/]*)$ envs: - - all + - staging disable_zauth: true basic_auth: true versioned: false