Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config.sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ services:
rules:
- host: plex.${TRAEFIK_DOMAIN}
httpAuth: false
internalHost: 172.17.0.1
internalPort: 32400
- name: flaresolverr
enabled: true
Expand Down
2 changes: 2 additions & 0 deletions run-seedbox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,8 @@ EOF
# If VPN => Traefik rule should redirect to gluetun container
backendHost=${name}
[[ ${vpn} == "true" ]] && backendHost="gluetun"
internalHost=$(echo $rule | jq -r .internalHost)
[[ ${internalHost} != "null" ]] && backendHost=${internalHost}

# Handle custom scheme (default if non-specified is http)
internalScheme="http"
Expand Down