mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
Switch to Boulder IP address.
This commit is contained in:
parent
3eaf35f1e2
commit
1be906c57f
4 changed files with 5 additions and 5 deletions
|
|
@ -127,7 +127,7 @@ Boulder:
|
|||
|
||||
.. code-block:: shell
|
||||
|
||||
export SERVER=http://localhost:4000/directory
|
||||
export SERVER=http://10.77.77.77:4000/directory
|
||||
source tests/integration/_common.sh
|
||||
|
||||
Run the integration tests using:
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ fi
|
|||
docker-compose up -d
|
||||
|
||||
set +x # reduce verbosity while waiting for boulder
|
||||
until curl http://localhost:4000/directory 2>/dev/null; do
|
||||
until curl http://10.77.77.77:4000/directory 2>/dev/null; do
|
||||
echo waiting for boulder
|
||||
sleep 1
|
||||
done
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ certbot_test () {
|
|||
|
||||
# Use local ACMEv2 endpoint if requested and SERVER isn't already set.
|
||||
if [ "${BOULDER_INTEGRATION:-v1}" = "v2" -a -z "${SERVER:+x}" ]; then
|
||||
SERVER="http://localhost:4001/directory"
|
||||
SERVER="http://10.77.77.77:4001/directory"
|
||||
fi
|
||||
|
||||
certbot_test_no_force_renew () {
|
||||
|
|
@ -30,7 +30,7 @@ certbot_test_no_force_renew () {
|
|||
--source $sources \
|
||||
--omit $omit_patterns \
|
||||
$(command -v certbot) \
|
||||
--server "${SERVER:-http://localhost:4000/directory}" \
|
||||
--server "${SERVER:-http://boulder:4000/directory}" \
|
||||
--no-verify-ssl \
|
||||
--tls-sni-01-port $tls_sni_01_port \
|
||||
--http-01-port $http_01_port \
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ from acme import client as acme_client
|
|||
from acme import errors as acme_errors
|
||||
from acme import messages
|
||||
|
||||
DIRECTORY = os.getenv('DIRECTORY', 'http://localhost:4000/directory')
|
||||
DIRECTORY = os.getenv('DIRECTORY', 'http://10.77.77.77:4000/directory')
|
||||
|
||||
if len(sys.argv) != 2:
|
||||
print("Usage: python deactivate.py private_key.pem")
|
||||
|
|
|
|||
Loading…
Reference in a new issue