mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-23 23:20:51 +01:00
Enable listening on IPv6 by default
This commit is contained in:
parent
d446fde009
commit
926387eb0a
3 changed files with 3 additions and 3 deletions
|
|
@ -102,7 +102,7 @@ public class CreateNetworkConfiguration : IMigrationRoutine
|
|||
|
||||
public int PublicPort { get; set; } = DefaultHttpPort;
|
||||
|
||||
public bool EnableIPV6 { get; set; }
|
||||
public bool EnableIPV6 { get; set; } = true;
|
||||
|
||||
public bool EnableIPV4 { get; set; } = true;
|
||||
|
||||
|
|
|
|||
|
|
@ -157,7 +157,7 @@ public class MigrateNetworkConfiguration : IMigrationRoutine
|
|||
|
||||
public string UDPPortRange { get; set; } = string.Empty;
|
||||
|
||||
public bool EnableIPV6 { get; set; }
|
||||
public bool EnableIPV6 { get; set; } = true;
|
||||
|
||||
public bool EnableIPV4 { get; set; } = true;
|
||||
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ public class NetworkConfiguration
|
|||
/// <summary>
|
||||
/// Gets or sets a value indicating whether IPv6 is enabled.
|
||||
/// </summary>
|
||||
public bool EnableIPv6 { get; set; }
|
||||
public bool EnableIPv6 { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether access from outside of the LAN is permitted.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue