From acf5e8280eb8af8f1f98fc9b3faa601fa570e64c Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Wed, 1 Oct 2025 00:09:45 +0200 Subject: [PATCH] Update compose config Signed-off-by: Bryan Frimin --- compose.yaml | 1 + compose/pebble/pebble-config.json | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/compose.yaml b/compose.yaml index 596ec9eee..723c3adc7 100644 --- a/compose.yaml +++ b/compose.yaml @@ -111,6 +111,7 @@ services: environment: PEBBLE_VA_NOSLEEP: "1" # Don't sleep during validation for faster testing PEBBLE_WFE_NONCEREJECT: "0" # Don't reject reused nonces + PEBBLE_VA_ALWAYS_VALID: "1" # Skip actual HTTP/DNS validation for local dev command: pebble -config /test/config/pebble-config.json -dnsserver 127.0.0.1:8053 volumes: - "./compose/pebble:/test/config:ro" diff --git a/compose/pebble/pebble-config.json b/compose/pebble/pebble-config.json index 8516a18ed..f2a30927b 100644 --- a/compose/pebble/pebble-config.json +++ b/compose/pebble/pebble-config.json @@ -4,9 +4,10 @@ "managementListenAddress": "0.0.0.0:15000", "certificate": "test/certs/localhost/cert.pem", "privateKey": "test/certs/localhost/key.pem", - "httpPort": 80, - "tlsPort": 443, + "httpPort": 5002, + "tlsPort": 5001, "ocspResponderURL": "", - "externalAccountBindingRequired": false + "externalAccountBindingRequired": false, + "domainBlocklist": [] } }