|
@@ -615,11 +615,34 @@ namespace Emby.Server.Implementations
|
|
var host = new WebHostBuilder()
|
|
var host = new WebHostBuilder()
|
|
.UseKestrel(options =>
|
|
.UseKestrel(options =>
|
|
{
|
|
{
|
|
- options.ListenAnyIP(HttpPort);
|
|
|
|
|
|
+ var addresses = ServerConfigurationManager
|
|
|
|
+ .Configuration
|
|
|
|
+ .LocalNetworkAddresses
|
|
|
|
+ .Select(NormalizeConfiguredLocalAddress)
|
|
|
|
+ .Where(i => i != null)
|
|
|
|
+ .ToList();
|
|
|
|
+ if (addresses.Any())
|
|
|
|
+ {
|
|
|
|
+ foreach (var address in addresses)
|
|
|
|
+ {
|
|
|
|
+ Logger.LogInformation("Kestrel listening on {ipaddr}", address);
|
|
|
|
+ options.Listen(address, HttpPort);
|
|
|
|
|
|
- if (EnableHttps && Certificate != null)
|
|
|
|
|
|
+ if (EnableHttps && Certificate != null)
|
|
|
|
+ {
|
|
|
|
+ options.Listen(address, HttpsPort, listenOptions => listenOptions.UseHttps(Certificate));
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ else
|
|
{
|
|
{
|
|
- options.ListenAnyIP(HttpsPort, listenOptions => listenOptions.UseHttps(Certificate));
|
|
|
|
|
|
+ Logger.LogInformation("Kestrel listening on all interfaces");
|
|
|
|
+ options.ListenAnyIP(HttpPort);
|
|
|
|
+
|
|
|
|
+ if (EnableHttps && Certificate != null)
|
|
|
|
+ {
|
|
|
|
+ options.ListenAnyIP(HttpsPort, listenOptions => listenOptions.UseHttps(Certificate));
|
|
|
|
+ }
|
|
}
|
|
}
|
|
})
|
|
})
|
|
.UseContentRoot(contentRoot)
|
|
.UseContentRoot(contentRoot)
|