mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
using Emby.Server.Implementations.HttpServer;
 | 
						|
using Emby.Server.Implementations.Updates;
 | 
						|
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
 | 
						|
 | 
						|
namespace Emby.Server.Implementations
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Static class containing the default configuration options for the web server.
 | 
						|
    /// </summary>
 | 
						|
    public static class ConfigurationOptions
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets a new copy of the default configuration options.
 | 
						|
        /// </summary>
 | 
						|
        public static Dictionary<string, string> DefaultConfiguration => new Dictionary<string, string>
 | 
						|
        {
 | 
						|
            { HostWebClientKey, bool.TrueString },
 | 
						|
            { HttpListenerHost.DefaultRedirectKey, "web/index.html" },
 | 
						|
            { InstallationManager.PluginManifestUrlKey, "https://repo.jellyfin.org/releases/plugin/manifest-stable.json" },
 | 
						|
            { FfmpegProbeSizeKey, "1G" },
 | 
						|
            { FfmpegAnalyzeDurationKey, "200M" },
 | 
						|
            { PlaylistsAllowDuplicatesKey, bool.TrueString }
 | 
						|
        };
 | 
						|
    }
 | 
						|
}
 |