| | 1 | | using System.Collections.Generic; |
| | 2 | | using static MediaBrowser.Controller.Extensions.ConfigurationExtensions; |
| | 3 | |
|
| | 4 | | namespace Emby.Server.Implementations |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// Static class containing the default configuration options for the web server. |
| | 8 | | /// </summary> |
| | 9 | | public static class ConfigurationOptions |
| | 10 | | { |
| | 11 | | /// <summary> |
| | 12 | | /// Gets a new copy of the default configuration options. |
| | 13 | | /// </summary> |
| 42 | 14 | | public static Dictionary<string, string?> DefaultConfiguration => new() |
| 42 | 15 | | { |
| 42 | 16 | | { HostWebClientKey, bool.TrueString }, |
| 42 | 17 | | { DefaultRedirectKey, "web/" }, |
| 42 | 18 | | { FfmpegProbeSizeKey, "1G" }, |
| 42 | 19 | | { FfmpegAnalyzeDurationKey, "200M" }, |
| 42 | 20 | | { BindToUnixSocketKey, bool.FalseString }, |
| 42 | 21 | | { SqliteCacheSizeKey, "20000" }, |
| 42 | 22 | | { FfmpegSkipValidationKey, bool.FalseString }, |
| 42 | 23 | | { FfmpegImgExtractPerfTradeoffKey, bool.FalseString }, |
| 42 | 24 | | { DetectNetworkChangeKey, bool.TrueString } |
| 42 | 25 | | }; |
| | 26 | | } |
| | 27 | | } |