Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/18df678d3f18bd710aa65fa315f4006a78415fbc You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixes - [Feature Request] Provide option to select which interface(s) to bind to

pull/702/head
Luke Pulverenti 9 years ago
parent 49b96a3613
commit 18df678d3f

@ -831,9 +831,24 @@ namespace MediaBrowser.Server.Startup.Common
private string CertificatePath { get; set; }
private string NormalizeConfiguredLocalAddress(string address)
{
var index = address.Trim('/').IndexOf('/');
if (index != -1)
{
address = address.Substring(index + 1);
}
return address.Trim('/');
}
private IEnumerable<string> GetUrlPrefixes()
{
var hosts = ServerConfigurationManager.Configuration.LocalNetworkAddresses.ToList();
var hosts = ServerConfigurationManager
.Configuration
.LocalNetworkAddresses
.Select(NormalizeConfiguredLocalAddress)
.ToList();
if (hosts.Count == 0)
{

Loading…
Cancel
Save