fix variables config

This commit is contained in:
Jesús 2021-12-18 19:18:16 -05:00
parent ec2c70d63e
commit 920853594f
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -11,7 +11,7 @@ if [ ! -d "/root/.youtube-local" ]; then
app_public = ${APP_PUBLIC:-False} app_public = ${APP_PUBLIC:-False}
# Set URL of app for example: http://localhost # Set URL of app for example: http://localhost
app_url = ${APP_URL:-'http://localhost'} app_url = "${APP_URL:-http://localhost}"
# 0 - Off # 0 - Off
# 1 - On, except video # 1 - On, except video
@ -34,7 +34,7 @@ allow_foreign_addresses = ${ALLOW_FOREIGN_ADDRESSES:-True}
subtitles_mode = ${SUBTITLES_MODE:-0} subtitles_mode = ${SUBTITLES_MODE:-0}
# ISO 639 language code: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes # ISO 639 language code: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
subtitles_language = ${SUBTITLES_LANG:-'en'} subtitles_language = "${SUBTITLES_LANG:-en}"
# 0 - Related videos disabled # 0 - Related videos disabled
# 1 - Related videos always shown # 1 - Related videos always shown