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