2023-08-16, 12:30 PM
Okay now I think I understood more.
My CaddyFile looks like this
Now my jellyfin-vue.yml like this:
But I am not getting Vue served. Do I have to put something else into the YML file?
My CaddyFile looks like this
Code:
jellyfin.domain.com {
php_fastcgi unix//run/php/php8.2-fpm.sock
reverse_proxy :8096
}
jellyfin-vue.domain.com {
reverse_proxy :8097
}
Now my jellyfin-vue.yml like this:
Code:
version: "3.8"
services:
jf-vue:
image: jellyfin/jellyfin-vue:unstable
container_name: "jellyfin-vue-client"
ports:
- "8097:8097"
restart: unless-stopped
environment:
- DEFAULT_SERVERS=https://jellyfin.domain.com
But I am not getting Vue served. Do I have to put something else into the YML file?