diff --git a/caddy/Caddyfile b/caddy/Caddyfile new file mode 100644 index 0000000..6983b73 --- /dev/null +++ b/caddy/Caddyfile @@ -0,0 +1,15 @@ +jellyfin.dylanbaird.com { + reverse_proxy localhost:8096 +} + +cindysquiltsandthings.ca { + respond "Future home of Cindy's Quilts and Things" +} + +forgejo.dylanbaird.com { + reverse_proxy localhost:3000 +} + +registry.dylanbaird.com { + reverse_proxy localhost:5000 +} \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 003a892..a096332 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,9 @@ services: jellyfin: image: jellyfin/jellyfin container_name: jellyfin - network_mode: 'host' # uses port 8096 + # network_mode: 'host' # uses port 8096 + ports: + - "8096:8096" volumes: - /tarrega/jellyfin/config:/config - /tarrega/jellyfin/cache:/cache