From 7a60ecbf974bd892d1c53422ce3f776dc2ce56d9 Mon Sep 17 00:00:00 2001 From: rekby Date: Sun, 27 Oct 2019 18:01:11 +0300 Subject: [PATCH 1/2] update instructions for acme v2 port --- README_DEV.md | 2 +- tests/run_docker_boulder.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README_DEV.md b/README_DEV.md index 8d8cc34c..7f6bdb1f 100644 --- a/README_DEV.md +++ b/README_DEV.md @@ -8,7 +8,7 @@ Need for boulder tests: Fake DNS - set to IP of devel computer, allowed from docker. Must bind docker port 4000 to local port 4000 (for integration tests). -If use docker-machine - need ```docker-machine ssh -L 4000:localhost:4000``` +If use docker-machine - need ```docker-machine ssh -L 4001:localhost:4001``` FAKE_DNS may be different for other OS. For example for mac os - need run other image and ping host.docker.internal for see IP for host. diff --git a/tests/run_docker_boulder.sh b/tests/run_docker_boulder.sh index b3a7d99f..6784d2d5 100644 --- a/tests/run_docker_boulder.sh +++ b/tests/run_docker_boulder.sh @@ -21,7 +21,7 @@ docker-compose up -d echo -n "Wait for boulder start listen " date -while ! curl -q http://localhost:4000 >/dev/null 2>&1; do +while ! curl -q http://localhost:4001 >/dev/null 2>&1; do sleep 1 done From 41ef09fd042bfd484088d82c6bf97ffa8ace6ec2 Mon Sep 17 00:00:00 2001 From: rekby Date: Sun, 27 Oct 2019 18:16:09 +0300 Subject: [PATCH 2/2] update go version to 1.13 --- .travis.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 100bcc19..83c1cd00 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ addons: - dos2unix go: - - "1.12" + - "1.13" services: - docker diff --git a/go.mod b/go.mod index b2edb578..ea63e713 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/rekby/lets-proxy2 -go 1.12 +go 1.13 require ( github.com/BurntSushi/toml v0.3.1