mirror of
https://github.com/certbot/certbot.git
synced 2026-02-24 18:31:56 -05:00
* Implement a logic, miss the private key of pebble
* Complete process
* Fix nginx cert path
* Check conditionnally docker
* Update gitignore, fix apacheconftest
* Full object
* Carriage return
* Work in progress
* Move to official v2.1.0 of pebble
* Fix name
* Update acme_server.py
* Link things together with new version of pebble
* Plug the logic to tests
* Update config
* Reinitiate config
* Add OCSP config to pebble
* Working.
* Simplify logic
* Clean code
* Use forked pebble for now
# Conflicts:
# certbot-ci/certbot_integration_tests/utils/pebble_artifacts.py
* Move full logic of mock at the acme server config
* Continue work
* Finish fixing the date parsing
* Update module name
* Use again official pebble
* Activate mock OCSP server
* Clean code
* Update pebble_artifacts.py
* Remove OCSP stale test
* Add executable permissions
* Clean code
* Update setup.py
* Simplify code
* On-demand import of pebble_ocsp_server
* Revert "Remove OCSP stale test"
This reverts commit 2e4c985b42.
# Conflicts:
# certbot-ci/certbot_integration_tests/utils/misc.py
* Fix for virtualenv on Python 3.7.4 for Windows
* Update acme_server.py
9 lines
398 B
Python
9 lines
398 B
Python
"""Some useful constants to use throughout certbot-ci integration tests"""
|
|
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
|