mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-23 17:52:36 -04:00
Signed-off-by: Fred Heinecke <fred.heinecke@yahoo.com> Signed-off-by: solidDoWant <fred.heinecke@yahoo.com>
38 lines
1.5 KiB
Plaintext
38 lines
1.5 KiB
Plaintext
# vi: ft=sh
|
|
# shellcheck disable=SC2034
|
|
|
|
# http route prefix (will listen to $KYOO_PREFIX/movie for example)
|
|
KYOO_PREFIX=""
|
|
|
|
|
|
# Optional authentication settings
|
|
# Set to true to disable login with password (OIDC auth must be configured)
|
|
# AUTHENTICATION_DISABLE_PASSWORD_LOGIN=true
|
|
# Set to true to disable the creation of new users (OIDC auth must be configured)
|
|
# AUTHENTICATION_DISABLE_USER_REGISTRATION=true
|
|
|
|
# Postgres settings
|
|
# POSTGRES_URL=postgres://user:password@hostname:port/dbname?sslmode=verify-full&sslrootcert=/path/to/server.crt&sslcert=/path/to/client.crt&sslkey=/path/to/client.key
|
|
# The behavior of the below variables match what is documented here:
|
|
# https://www.postgresql.org/docs/current/libpq-envars.html
|
|
PGUSER=kyoo
|
|
PGPASSWORD=password
|
|
PGDB=kyooDB
|
|
PGSERVER=postgres
|
|
PGPORT=5432
|
|
# PGOPTIONS=-c search_path=kyoo,public
|
|
# PGPASSFILE=/my/password # Takes precedence over PGPASSWORD. New line characters are not trimmed.
|
|
# PGSSLMODE=verify-full
|
|
# PGSSLROOTCERT=/my/serving.crt
|
|
# PGSSLCERT=/my/client.crt
|
|
# PGSSLKEY=/my/client.key
|
|
|
|
# RabbitMQ settings
|
|
# Full list of options: https://www.rabbitmq.com/uri-spec.html, https://www.rabbitmq.com/docs/uri-query-parameters
|
|
# RABBITMQ_URL=amqps://user:password@rabbitmq-server:1234/vhost?cacertfile=/path/to/cacert.pem&certfile=/path/to/cert.pem&keyfile=/path/to/key.pem&verify=verify_peer&auth_mechanism=EXTERNAL
|
|
# These values override what is provided the the URL variable
|
|
RABBITMQ_DEFAULT_USER=guest
|
|
RABBITMQ_DEFAULT_PASS=guest
|
|
RABBITMQ_HOST=rabbitmq
|
|
RABBITMQ_PORT=5672
|