2019-02-08 02:13:58 -07:00
|
|
|
using System.Collections.Generic;
|
2019-10-26 13:53:53 -07:00
|
|
|
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
|
2019-02-08 02:13:58 -07:00
|
|
|
|
|
|
|
namespace Emby.Server.Implementations
|
|
|
|
{
|
2020-02-25 09:02:51 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Static class containing the default configuration options for the web server.
|
|
|
|
/// </summary>
|
2019-02-08 02:13:58 -07:00
|
|
|
public static class ConfigurationOptions
|
|
|
|
{
|
2020-02-25 09:02:51 -07:00
|
|
|
/// <summary>
|
2020-02-25 09:22:21 -07:00
|
|
|
/// Gets a new copy of the default configuration options.
|
2020-02-25 09:02:51 -07:00
|
|
|
/// </summary>
|
2023-06-05 09:46:13 -07:00
|
|
|
public static Dictionary<string, string?> DefaultConfiguration => new()
|
2019-02-08 02:13:58 -07:00
|
|
|
{
|
2020-03-21 10:25:09 -07:00
|
|
|
{ HostWebClientKey, bool.TrueString },
|
2023-05-15 12:28:33 -07:00
|
|
|
{ DefaultRedirectKey, "web/" },
|
2019-10-26 13:53:53 -07:00
|
|
|
{ FfmpegProbeSizeKey, "1G" },
|
2020-03-13 15:11:59 -07:00
|
|
|
{ FfmpegAnalyzeDurationKey, "200M" },
|
2020-09-10 10:03:08 -07:00
|
|
|
{ PlaylistsAllowDuplicatesKey, bool.FalseString },
|
2023-06-05 09:46:13 -07:00
|
|
|
{ BindToUnixSocketKey, bool.FalseString },
|
2024-08-28 11:43:37 -07:00
|
|
|
{ SqliteCacheSizeKey, "20000" },
|
2024-09-09 12:17:10 -07:00
|
|
|
{ FfmpegSkipValidationKey, bool.FalseString },
|
|
|
|
{ DetectNetworkChangeKey, bool.TrueString }
|
2019-02-08 02:13:58 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|