Don't make the server use ssl by default

This commit is contained in:
liuying
2024-10-06 00:53:08 +08:00
committed by GitHub
parent 4ed8295045
commit 48c4d3bade

View File

@@ -17,7 +17,7 @@ public class HttpServerConfig
public string BindAddress { get; set; } = "0.0.0.0";
public string PublicAddress { get; set; } = "127.0.0.1";
public int Port { get; set; } = 443;
public bool UseSSL { get; set; } = true;
public bool UseSSL { get; set; } = false;
public string GetDisplayAddress()
{
@@ -115,4 +115,4 @@ public class DownloadUrlConfig
public class MuipServerConfig
{
public string AdminKey { get; set; } = "None";
}
}