mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
22 lines
465 B
Plaintext
22 lines
465 B
Plaintext
# vi: ft=sh
|
|
# shellcheck disable=SC2034
|
|
|
|
KYOO_PREFIX=/api
|
|
|
|
|
|
# either an hard-coded secret to decode jwts or empty to use keibi's public secret.
|
|
# this should only be used in tests
|
|
JWT_SECRET=
|
|
# used to verify who's making the jwt
|
|
JWT_ISSUER=$PUBLIC_URL
|
|
# keibi's server to retrieve the public jwt secret
|
|
AUTH_SERVER=http://auth:4568
|
|
|
|
IMAGES_PATH=./images
|
|
|
|
POSTGRES_USER=kyoo
|
|
POSTGRES_PASSWORD=password
|
|
POSTGRES_DB=kyooDB
|
|
POSTGRES_SERVER=postgres
|
|
POSTGRES_PORT=5432
|