Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.11 KB

README.md

File metadata and controls

37 lines (29 loc) · 1.11 KB

LetsEncrypt wildcard certs

Using acme4j and hover at the moment.

build

./gradlew build

run

export HOVER_USERNAME=<hover_username>
export HOVER_PASSWORD=<hover_password>

# with gradle:
./gradlew run -PappArgs="['--mode','staging','--domain','*.foo.org','--domain','*.bar.foo.org']" 

# or without gradle; use the generated start script in the distro
cd build/distributions 
unzip *.zip 
cd $(ls -d */)
./bin/letsencrypt-wildcard-certs --mode staging --domain *.foo.org --domain *.bar.foo.org

Verify the cert chain

openssl x509 -in domain-chain.crt -text

Resources