mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
This is progress towards https://github.com/certbot/certbot/issues/9370 as discussed at https://github.com/certbot/certbot/pull/9435. I kept the command using `docker-compose` because `docker compose` doesn't seem that widely recognized yet and https://www.docker.com/blog/announcing-compose-v2-general-availability/ describes aliasing `docker-compose` to `docker compose` on newer systems by default. * refactor boulder shutdown * remove docker-compose dep * Reorder shutdown process
12 lines
536 B
Python
12 lines
536 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_V2_CHALLTESTSRV_URL = f'http://10.77.77.77:{CHALLTESTSRV_PORT}'
|
|
BOULDER_V2_DIRECTORY_URL = 'http://localhost:4001/directory'
|
|
PEBBLE_DIRECTORY_URL = 'https://localhost:14000/dir'
|
|
PEBBLE_MANAGEMENT_URL = 'https://localhost:15000'
|
|
PEBBLE_CHALLTESTSRV_URL = f'http://localhost:{CHALLTESTSRV_PORT}'
|
|
MOCK_OCSP_SERVER_PORT = 4002
|
|
PEBBLE_ALTERNATE_ROOTS = 2
|
|
MAX_SUBPROCESS_WAIT = 120
|