Update Invidious for use with external clients (#3714)

* Update Invidious for use with external clients

* Remove INVIDIOUS_DOMAIN
This commit is contained in:
Rolling 2024-06-13 21:34:07 +02:00 committed by GitHub
parent b100cdd835
commit 1ab15dc03f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 22 additions and 1 deletions

View File

@ -6,7 +6,7 @@
"port": 8095,
"id": "invidious",
"version": "latest",
"tipi_version": 9,
"tipi_version": 10,
"categories": ["media", "social"],
"description": "Invidious is an open source alternative front-end to YouTube.",
"short_desc": "An alternative front-end to YouTube",
@ -19,6 +19,21 @@
"max": 20,
"label": "HMAC key",
"env_variable": "INVIDIOUS_HMAC_KEY"
},
{
"type": "text",
"label": "External port",
"hint": "External port for access from proxy",
"placeholder": "80,443",
"required": false,
"env_variable": "INVIDIOUS_EXTERNAL_PORT"
},
{
"type": "boolean",
"label": "https only",
"hint": "Force for access from https only",
"required": false,
"env_variable": "INVIDIOUS_HTTPS_ONLY"
}
],
"supported_architectures": ["arm64", "amd64"]

View File

@ -19,6 +19,9 @@ services:
check_tables: true
hmac_key: ${INVIDIOUS_HMAC_KEY}
use_innertube_for_captions: true
domain: ${APP_DOMAIN}
external_port: ${INVIDIOUS_EXTERNAL_PORT}
https_only: ${INVIDIOUS_HTTPS_ONLY}
healthcheck:
test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/trending || exit 1
interval: 30s

View File

@ -20,6 +20,9 @@ services:
check_tables: true
hmac_key: ${INVIDIOUS_HMAC_KEY}
use_innertube_for_captions: true
domain: ${APP_DOMAIN}
external_port: ${INVIDIOUS_EXTERNAL_PORT}
https_only: ${INVIDIOUS_HTTPS_ONLY}
healthcheck:
test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/trending || exit 1
interval: 30s