2019-02-08 09:13:58 +00:00
|
|
|
using System.Collections.Generic;
|
2020-02-28 16:57:38 +00:00
|
|
|
using Emby.Server.Implementations.HttpServer;
|
2020-04-05 17:46:36 +00:00
|
|
|
using Emby.Server.Implementations.Updates;
|
2019-10-26 20:53:53 +00:00
|
|
|
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
|
2019-02-08 09:13:58 +00:00
|
|
|
|
|
|
|
namespace Emby.Server.Implementations
|
|
|
|
{
|
2020-02-25 16:02:51 +00: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 16:02:51 +00:00
|
|
|
/// <summary>
|
2020-02-25 16:22:21 +00:00
|
|
|
/// Gets a new copy of the default configuration options.
|
2020-02-25 16:02:51 +00:00
|
|
|
/// </summary>
|
|
|
|
public static Dictionary<string, string> DefaultConfiguration => new Dictionary<string, string>
|
2019-02-08 09:13:58 +00:00
|
|
|
{
|
2020-03-21 17:25:09 +00:00
|
|
|
{ HostWebClientKey, bool.TrueString },
|
2020-02-28 16:57:38 +00:00
|
|
|
{ HttpListenerHost.DefaultRedirectKey, "web/index.html" },
|
2020-04-11 11:11:41 +00:00
|
|
|
{ InstallationManager.PluginManifestUrlKey, "https://repo.jellyfin.org/releases/plugin/manifest-stable.json" },
|
2019-10-26 20:53:53 +00:00
|
|
|
{ FfmpegProbeSizeKey, "1G" },
|
2020-03-13 22:11:59 +00:00
|
|
|
{ FfmpegAnalyzeDurationKey, "200M" },
|
|
|
|
{ PlaylistsAllowDuplicatesKey, bool.TrueString }
|
2019-02-08 09:13:58 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|