mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			880 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			880 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
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 },
 | 
						|
            { DefaultRedirectKey, "web/index.html" },
 | 
						|
            { FfmpegProbeSizeKey, "1G" },
 | 
						|
            { FfmpegAnalyzeDurationKey, "200M" },
 | 
						|
            { PlaylistsAllowDuplicatesKey, bool.FalseString },
 | 
						|
            { BindToUnixSocketKey, bool.FalseString }
 | 
						|
        };
 | 
						|
    }
 | 
						|
}
 |