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": [] } }