2024-11-08, 12:06 AM
Hi,
I'm using php script putting my actual IP Adress to network.xml <RemoteIPFilter><string></string></RemoteIPFilter> using API
All is fine, IP's are coming to network.xml into <RemoteIPFilter><string></string></RemoteIPFilter>
Problem is : I have to restart Jellyfin (i'm using debian > service jellyfin restart) for this settings (network.xml) being updated
Restarting like this is not really good cause it's take long time (1 or 2 minutes)
I used EMBY with same script, and EMBy take it directly.
Is there a way to do it like Emby does ?
Thank You
I'm using php script putting my actual IP Adress to network.xml <RemoteIPFilter><string></string></RemoteIPFilter> using API
Code:
/System/Configuration/Network?ApiKey=
$this->networkConfiguration["RemoteIPFilter"] = $addressIps;
All is fine, IP's are coming to network.xml into <RemoteIPFilter><string></string></RemoteIPFilter>
Problem is : I have to restart Jellyfin (i'm using debian > service jellyfin restart) for this settings (network.xml) being updated
Restarting like this is not really good cause it's take long time (1 or 2 minutes)
I used EMBY with same script, and EMBy take it directly.
Is there a way to do it like Emby does ?
Thank You