Hallo zusammen,
ich würde gerne Invidious auf meinem Synology NAS in Docker einrichten.
Grundsätzlich habe ich die Anleitung hier (https://mariushosting.com/how-to-install…r-synology-nas/) verfolgt.
Mit der URL: http://192.168.178.18:1045 lässt sich Invidious dann grundsätzlich aufrufen. Ziel ist es jedoch über einen Reverse Proxy Invidious über https://DYNDNSADRESSE:1046 aufzurufen. Dies klappt leider noch nicht.
Hoffe auch dass ich dies dann in die FreshRSS-Erweiterung (https://github.com/Korbak/freshrss-invidious) eintragen kann (hoffe da gehen portummern, also auch https://DYNDNSADRESSE:1046 anstatt nur https://invidious.DYNDNSADRESSE)
Hat jemand eine Idee woran das liegen könnte?
Code
version: "3.9"
services:
invidious-db:
image: postgres
container_name: Invidious-DB
hostname: invidious-db
security_opt:
- no-new-privileges:true
healthcheck:
test: ["CMD", "pg_isready", "-q", "-d", "invidious", "-U", "kemal"]
timeout: 45s
interval: 10s
retries: 10
user: 1026:100
volumes:
- /volume1/docker/invidiousdb:/var/lib/postgresql/data
environment:
POSTGRES_DB: invidious
POSTGRES_USER: kemal
POSTGRES_PASSWORD: kemalpw
restart: always
invidious:
image: quay.io/invidious/invidious:latest
container_name: Invidious
hostname: invidious
user: 1026:100
security_opt:
- no-new-privileges:true
healthcheck:
test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/comments/jNQXAC9IVRw || exit 1
interval: 30s
timeout: 5s
retries: 2
ports:
- 192.168.178.18:1045:3000
environment:
INVIDIOUS_CONFIG: |
db:
dbname: invidious
user: kemal
password: kemalpw
host: invidious-db
port: 5432
check_tables: true
captcha_enabled: false
default_user_preferences:
locale: de
region: DE
hsts: true
restart: always
depends_on:
invidious-db:
condition: service_healthy
Alles anzeigen