mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-12-06 06:36:25 +00:00
62 lines
2.2 KiB
Plaintext
62 lines
2.2 KiB
Plaintext
# Useful config options
|
|
|
|
# Library root can either be an absolute path or a relative path to your docker-compose.yml file.
|
|
LIBRARY_ROOT=./video
|
|
CACHE_ROOT=/tmp/kyoo_cache
|
|
LIBRARY_LANGUAGES=en
|
|
# Hardware transcoding (equivalent of --profile docker compose option).
|
|
COMPOSE_PROFILES= # vaapi or qsv or nvidia
|
|
# the preset used during transcode. faster means worst quality, you can probably use a slower preset with hwaccels
|
|
# warning: using vaapi hwaccel disable presets (they are not supported).
|
|
GOCODER_PRESET=fast
|
|
|
|
# A pattern (regex) to ignore video files.
|
|
LIBRARY_IGNORE_PATTERN=.*/[dD]ownloads?/.*
|
|
|
|
# The following two values should be set to a random sequence of characters.
|
|
# You MUST change thoses when installing kyoo (for security)
|
|
AUTHENTICATION_SECRET=4c@mraGB!KRfF@kpS8739y9FcHemKxBsqqxLbdR?
|
|
# You can input multiple api keys separated by a ,
|
|
KYOO_APIKEYS=t7H5!@4iMNsAaSJQ49pat4jprJgTcF656if#J3
|
|
|
|
DEFAULT_PERMISSIONS=overall.read,overall.play
|
|
UNLOGGED_PERMISSIONS=overall.read,overall.play
|
|
|
|
THEMOVIEDB_APIKEY=
|
|
|
|
PUBLIC_URL=http://localhost:5000
|
|
# Use a builtin oidc service (google or discord):
|
|
# OIDC_DISCORD_CLIENTID=
|
|
# OIDC_DISCORD_SECRET=
|
|
|
|
# Or add your custom one:
|
|
OIDC_SERVICE_NAME=YourPrettyName
|
|
OIDC_SERVICE_LOGO=https://url-of-your-logo.com
|
|
OIDC_SERVICE_CLIENTID=
|
|
OIDC_SERVICE_SECRET=
|
|
OIDC_SERVICE_AUTHORIZATION=https://url-of-the-authorization-endpoint-of-the-oidc-service.com/auth
|
|
OIDC_SERVICE_TOKEN=https://url-of-the-token-endpoint-of-the-oidc-service.com/token
|
|
OIDC_SERVICE_PROFILE=https://url-of-the-profile-endpoint-of-the-oidc-service.com/userinfo
|
|
OIDC_SERVICE_SCOPE="the list of scopes space separeted like email identity"
|
|
# on the previous list, service is the internal name of your service, you can add as many as you want.
|
|
|
|
|
|
# Following options are optional and only useful for debugging.
|
|
|
|
# To debug the front end, you can set the following to an external backend
|
|
KYOO_URL=
|
|
# The library root inside the container.
|
|
KYOO_LIBRARY_ROOT=/video
|
|
|
|
# Database things
|
|
POSTGRES_USER=KyooUser
|
|
POSTGRES_PASSWORD=KyooPassword
|
|
POSTGRES_DB=kyooDB
|
|
POSTGRES_SERVER=postgres
|
|
POSTGRES_PORT=5432
|
|
|
|
MEILI_HOST="http://meilisearch:7700"
|
|
MEILI_MASTER_KEY="ghvjkgisbgkbgskegblfqbgjkebbhgwkjfb"
|
|
|
|
# vi: ft=sh
|