mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-03 20:36:03 +02:00
8 lines
310 B
Bash
8 lines
310 B
Bash
#!/bin/bash
|
|
|
|
# See : https://www.pomerium.io/docs/reference/certificates
|
|
export AUTOCERT=TRUE # Use Let's Encrypt to fetch certs. Port 80/443 must be internet accessible.
|
|
|
|
# 256 bit random keys
|
|
export SHARED_SECRET="$(head -c32 /dev/urandom | base64)"
|
|
export COOKIE_SECRET="$(head -c32 /dev/urandom | base64)"
|