global: add ssl support to all servers

This commit is contained in:
Abdullah Atta
2023-01-03 22:28:17 +05:00
parent 4a5889caee
commit 9db20e7f98
6 changed files with 39 additions and 15 deletions

View File

@@ -50,6 +50,13 @@ namespace Notesnook.API
{
options.Limits.MaxRequestBodySize = long.MaxValue;
options.ListenAnyIP(Servers.NotesnookAPI.Port);
if (Servers.NotesnookAPI.IsSecure)
{
options.ListenAnyIP(443, listenerOptions =>
{
listenerOptions.UseHttps(Servers.NotesnookAPI.SSLCertificate);
});
}
});
});
}