Add 'ssl_enabled' config parameter

This commit is contained in:
badaix 2024-05-11 13:23:14 +02:00
parent c2528623cd
commit 97739a460e
5 changed files with 33 additions and 24 deletions

View file

@ -48,6 +48,7 @@ struct ServerSettings
struct Http
{
bool enabled{true};
bool ssl_enabled{false};
size_t port{1780};
size_t ssl_port{1788};
std::vector<std::string> bind_to_address{{"0.0.0.0"}};