aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-08-14 19:22:01 -0500
committerJesús <heckyel@hyperbola.info>2021-08-14 19:22:01 -0500
commitf7fa9079e817d26401a0ce432fcbf0deaf1a1d0e (patch)
treef66198391a51f50ef6c1c0ab6b9cc2f38e85c3d4
parent651dae61430c9de71e8a8666d8b33224d85095f3 (diff)
downloadyt-local-docker-f7fa9079e817d26401a0ce432fcbf0deaf1a1d0e.tar.lz
yt-local-docker-f7fa9079e817d26401a0ce432fcbf0deaf1a1d0e.tar.xz
yt-local-docker-f7fa9079e817d26401a0ce432fcbf0deaf1a1d0e.zip
[config]: minor fix
-rw-r--r--config.env.example2
-rw-r--r--core/entrypoint.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/config.env.example b/config.env.example
index fb0f820..47d1184 100644
--- a/config.env.example
+++ b/config.env.example
@@ -3,7 +3,7 @@
#
APP_PUBLIC=True
-APP_URL=http://example.org
+APP_URL='http://example.org'
ROUTE_TOR=0
TOR_PORT=9050
diff --git a/core/entrypoint.sh b/core/entrypoint.sh
index 6136b7e..a42ca5a 100644
--- a/core/entrypoint.sh
+++ b/core/entrypoint.sh
@@ -11,7 +11,7 @@ if [ ! -d "/root/.youtube-local" ]; then
app_public = ${APP_PUBLIC:-False}
# Set URL of app for example: http://localhost
-app_url = ${APP_URL:-http://localhost}
+app_url = ${APP_URL:-'http://localhost'}
# 0 - Off
# 1 - On, except video
@@ -34,7 +34,7 @@ allow_foreign_addresses = ${ALLOW_FOREIGN_ADDRESSES:-True}
subtitles_mode = ${SUBTITLES_MODE:-0}
# 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
# 1 - Related videos always shown