mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
[As discussed in Mattermost](https://opensource.eff.org/eff-open-source/pl/yhtp4qu4zpfczm5wxmzxhndrto), our Apache test farm tests are failing because the CA certificate in the old version of boulder we have pinned expired over the weekend. This PR fixes that by running a local Pebble instance instead of an external boulder instance. * switch from external boulder to local pebble * add --http-01-port to run_acme_server
10 lines
433 B
Python
10 lines
433 B
Python
"""Some useful constants to use throughout certbot-ci integration tests"""
|
|
DEFAULT_HTTP_01_PORT = 5002
|
|
TLS_ALPN_01_PORT = 5001
|
|
CHALLTESTSRV_PORT = 8055
|
|
BOULDER_V1_DIRECTORY_URL = 'http://localhost:4000/directory'
|
|
BOULDER_V2_DIRECTORY_URL = 'http://localhost:4001/directory'
|
|
PEBBLE_DIRECTORY_URL = 'https://localhost:14000/dir'
|
|
PEBBLE_MANAGEMENT_URL = 'https://localhost:15000'
|
|
MOCK_OCSP_SERVER_PORT = 4002
|
|
PEBBLE_ALTERNATE_ROOTS = 2
|