mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-04-12 12:06:29 +00:00
fix: fix rootPath for wss server
This commit is contained in:
parent
eece4dece1
commit
40f540e23a
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue