mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-02 11:56:02 +02:00
* Implement partial files * fix markdown link * Update Quickstart Doc This update simplifies the quickstart process by assuming a local test environment without a TLS solution or a FQDN * add TLS warning * point to local verify container * rm empty file * reference Certificate topic page instructions * update mkcert instructions * Update docs/docs/install/readme.md Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * Update docs/partials/install-mkcert.md Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * Update examples/config/config.docker.yaml Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * Update examples/config/config.docker.yaml Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * Update examples/config/config.docker.yaml Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * Update examples/config/config.docker.yaml Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * review edits Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> Co-authored-by: bobby <1544881+desimone@users.noreply.github.com>
14 lines
No EOL
468 B
Markdown
14 lines
No EOL
468 B
Markdown
After [installing mkcert], confirm the presence and names of your local CA files:
|
|
|
|
```bash
|
|
mkcert -install
|
|
The local CA is already installed in the system trust store! 👍
|
|
The local CA is already installed in the Firefox and/or Chrome/Chromium trust store! 👍
|
|
|
|
ls "$(mkcert -CAROOT)"
|
|
rootCA-key.pem rootCA.pem
|
|
```
|
|
|
|
The output of `mkcert -install` may vary depending on your operating system.
|
|
|
|
[installing mkcert]: https://github.com/FiloSottile/mkcert#installation |