Sfoglia il codice sorgente

Disable unix socket by default

Bond_009 5 anni fa
parent
commit
d006f4301a
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      Emby.Server.Implementations/ConfigurationOptions.cs

+ 1 - 1
Emby.Server.Implementations/ConfigurationOptions.cs

@@ -19,7 +19,7 @@ namespace Emby.Server.Implementations
             { FfmpegProbeSizeKey, "1G" },
             { FfmpegAnalyzeDurationKey, "200M" },
             { PlaylistsAllowDuplicatesKey, bool.TrueString },
-            { BindToUnixSocketKey, bool.TrueString }
+            { BindToUnixSocketKey, bool.FalseString }
         };
     }
 }