You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if any change has happened but you have to assign certificate to port you are using.
Run as administrator following command (replace port (8880), certificate hash and app id from your AssemblyInfo:
netsh http add sslcert ipport=0.0.0.0:8880 certhash=0be1756f938ebcc2f4facc7d4ea05d5a5a72d64f appid={b5ceab04-be4d-4563-9bb7-21e4238591e1}
After that you can start WebDAV with listening on assigned port:
server.Listener.Prefixes.Add("https://localhost:8880");
server.Start();
I need to run this server under https.
As I did not find anything in the docs: What has to be done to enable ssl here?
The text was updated successfully, but these errors were encountered: