fix: fix rootPath for wss server

This commit is contained in:
Neil Dorin
2023-11-20 13:11:46 -07:00
parent eece4dece1
commit 40f540e23a

View File

@@ -112,10 +112,10 @@ namespace PepperDash.Core
Debug.Console(0, "Starting Websocket Server on port: {0}", port);
Start(port, $"\\user\\{_certificateName}.pfx", _certificatePassword, @"\html\wss");
Start(port, $"\\user\\{_certificateName}.pfx", _certificatePassword, @"");
}
private void Start(int port, string certPath = "", string certPassword = "", string rootPath = @"\html")
private void Start(int port, string certPath = "", string certPassword = "", string rootPath = @"/html")
{
try
{