Add custom URL for Plex web service
- Updated running_services_location() function to display custom URL for Plex web service. - If the service is Plex, the URL is now displayed as "http://$host_ip:${services[$service]}/web".
This commit is contained in:
parent
8886f0c56a
commit
1321db8634
4
docs.org
4
docs.org
@ -376,7 +376,11 @@ running_services_location() {
|
||||
|
||||
echo -e "Service URLs:"
|
||||
for service in "${!services[@]}"; do
|
||||
if [ "$service" = "plex" ]; then
|
||||
echo "$service: http://$host_ip:${services[$service]}/web"
|
||||
else
|
||||
echo "$service: http://$host_ip:${services[$service]}/"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
|
@ -309,7 +309,11 @@ running_services_location() {
|
||||
|
||||
echo -e "Service URLs:"
|
||||
for service in "${!services[@]}"; do
|
||||
if [ "$service" = "plex" ]; then
|
||||
echo "$service: http://$host_ip:${services[$service]}/web"
|
||||
else
|
||||
echo "$service: http://$host_ip:${services[$service]}/"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user