Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
timzaak committed Jun 24, 2024
1 parent 996b648 commit 4db8ea0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
3 changes: 3 additions & 0 deletions docs/develop/change-log.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log
### Version 2.2.3
- fix: sub_path '' => '/', like GitHub pages
- fix: redirect with no querystring
- feat: support ACME Pebble integration test, and change config
- deps: update server deps

### Version 2.2.2

Expand Down
6 changes: 3 additions & 3 deletions docs/develop/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- bench: add benchmark
- [x] integration check of files list
- **big break change**: config format change from honcon to yaml (honcon lib is archived)
- [x] support Let's Encrypt with [acme-lib](https://crates.io/crates/acme-lib)
- **big break change**: config format change from hocon to yaml (hocon lib is archived)
- [x] support Let's Encrypt
- admin server support HTTPS
- use it in production environment
- [x] use it in production environment
10 changes: 1 addition & 9 deletions tests/bash/run_pebble.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
#!/bin/bash
docker run --network=host -d
--name pebble \
ghcr.io/letsencrypt/pebble:2.6.0 && \
exit 0;

## next command is for mac test.
export IP=192.168.1.255 #change it to self
docker run -p 14000:14000 -p 15000:15000 --rm \
--add-host=local.fornetcode.com:$(IP) \
docker run --network=host -d \
--name pebble \
ghcr.io/letsencrypt/pebble:2.6.0
7 changes: 7 additions & 0 deletions tests/bash/run_pebble_mac.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash
#change it to self
export IP=192.168.1.255
docker run -p 14000:14000 -p 15000:15000 --rm \
--add-host=local.fornetcode.com:$(IP) \
--name pebble \
ghcr.io/letsencrypt/pebble:2.6.0

0 comments on commit 4db8ea0

Please sign in to comment.