Adding Caddy and testing network mode change for jellyfin.
This commit is contained in:
parent
d8f138a6be
commit
8526e8cdcc
2 changed files with 18 additions and 1 deletions
15
caddy/Caddyfile
Normal file
15
caddy/Caddyfile
Normal file
|
@ -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
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue