Skip to content

Commit

Permalink
fix: fix rootPath for wss server
Browse files Browse the repository at this point in the history
  • Loading branch information
ndorin committed Nov 20, 2023
1 parent eece4de commit 40f540e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Pepperdash Core/Logging/DebugWebsocketSink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ public void StartServerAndSetPort(int port)
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
{
Expand Down

0 comments on commit 40f540e

Please sign in to comment.