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

@@ -49,6 +49,13 @@ namespace Streetwriters.Messenger
{
options.Limits.MaxRequestBodySize = long.MaxValue;
options.ListenAnyIP(Servers.MessengerServer.Port);
if (Servers.MessengerServer.IsSecure)
{
options.ListenAnyIP(443, listenerOptions =>
{
listenerOptions.UseHttps(Servers.MessengerServer.SSLCertificate);
});
}
});
});
}