mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-02 11:56:02 +02:00
- Update changelog. - Update docs to cover authorization support. - Updates helm to support authorization, and policy file.
10 lines
322 B
Bash
Executable file
10 lines
322 B
Bash
Executable file
#!/bin/bash
|
|
# requires acme.sh see : https://github.com/Neilpang/acme.sh
|
|
# curl https://get.acme.sh | sh
|
|
echo "=> manually issue a wildcard certificate, renewal is up to you!"
|
|
$HOME/.acme.sh/acme.sh \
|
|
--issue \
|
|
-k ec-256 \
|
|
-d '*.corp.beyondperimeter.com' \
|
|
--dns \
|
|
--yes-I-know-dns-manual-mode-enough-go-ahead-please
|