Update Invidious for use with external clients (#3714)
* Update Invidious for use with external clients * Remove INVIDIOUS_DOMAIN
This commit is contained in:
parent
b100cdd835
commit
1ab15dc03f
|
@ -6,7 +6,7 @@
|
||||||
"port": 8095,
|
"port": 8095,
|
||||||
"id": "invidious",
|
"id": "invidious",
|
||||||
"version": "latest",
|
"version": "latest",
|
||||||
"tipi_version": 9,
|
"tipi_version": 10,
|
||||||
"categories": ["media", "social"],
|
"categories": ["media", "social"],
|
||||||
"description": "Invidious is an open source alternative front-end to YouTube.",
|
"description": "Invidious is an open source alternative front-end to YouTube.",
|
||||||
"short_desc": "An alternative front-end to YouTube",
|
"short_desc": "An alternative front-end to YouTube",
|
||||||
|
@ -19,6 +19,21 @@
|
||||||
"max": 20,
|
"max": 20,
|
||||||
"label": "HMAC key",
|
"label": "HMAC key",
|
||||||
"env_variable": "INVIDIOUS_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"]
|
"supported_architectures": ["arm64", "amd64"]
|
||||||
|
|
|
@ -19,6 +19,9 @@ services:
|
||||||
check_tables: true
|
check_tables: true
|
||||||
hmac_key: ${INVIDIOUS_HMAC_KEY}
|
hmac_key: ${INVIDIOUS_HMAC_KEY}
|
||||||
use_innertube_for_captions: true
|
use_innertube_for_captions: true
|
||||||
|
domain: ${APP_DOMAIN}
|
||||||
|
external_port: ${INVIDIOUS_EXTERNAL_PORT}
|
||||||
|
https_only: ${INVIDIOUS_HTTPS_ONLY}
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/trending || exit 1
|
test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/trending || exit 1
|
||||||
interval: 30s
|
interval: 30s
|
||||||
|
|
|
@ -20,6 +20,9 @@ services:
|
||||||
check_tables: true
|
check_tables: true
|
||||||
hmac_key: ${INVIDIOUS_HMAC_KEY}
|
hmac_key: ${INVIDIOUS_HMAC_KEY}
|
||||||
use_innertube_for_captions: true
|
use_innertube_for_captions: true
|
||||||
|
domain: ${APP_DOMAIN}
|
||||||
|
external_port: ${INVIDIOUS_EXTERNAL_PORT}
|
||||||
|
https_only: ${INVIDIOUS_HTTPS_ONLY}
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/trending || exit 1
|
test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/trending || exit 1
|
||||||
interval: 30s
|
interval: 30s
|
||||||
|
|
Loading…
Reference in New Issue
Block a user