aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ConfigurationOptions.cs
diff options
context:
space:
mode:
authorBill Thornton <thornbill@users.noreply.github.com>2023-05-16 00:49:54 -0400
committerGitHub <noreply@github.com>2023-05-16 00:49:54 -0400
commitdea1f60b0d7e40ac267adf84509eca664dab8d40 (patch)
treec88aa6a6c22973a8e2e8296894cae544e8544fb4 /Emby.Server.Implementations/ConfigurationOptions.cs
parent3a9f4a3c6d3f3e4992e7529c94ed0fc71fd2234c (diff)
parent155f3856c05645ac70f98029d66e5d465e3798fd (diff)
Merge pull request #9776 from thornbill/default-files
Use default files to remove index.html from url
Diffstat (limited to 'Emby.Server.Implementations/ConfigurationOptions.cs')
-rw-r--r--Emby.Server.Implementations/ConfigurationOptions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ConfigurationOptions.cs b/Emby.Server.Implementations/ConfigurationOptions.cs
index f0a4c8ffb..630265dac 100644
--- a/Emby.Server.Implementations/ConfigurationOptions.cs
+++ b/Emby.Server.Implementations/ConfigurationOptions.cs
@@ -14,7 +14,7 @@ namespace Emby.Server.Implementations
public static Dictionary<string, string?> DefaultConfiguration => new Dictionary<string, string?>
{
{ HostWebClientKey, bool.TrueString },
- { DefaultRedirectKey, "web/index.html" },
+ { DefaultRedirectKey, "web/" },
{ FfmpegProbeSizeKey, "1G" },
{ FfmpegAnalyzeDurationKey, "200M" },
{ PlaylistsAllowDuplicatesKey, bool.FalseString },