From 1b14206a3cc84a5f30645227caec2da234587359 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Thu, 23 Dec 2021 14:24:00 +0100 Subject: [PATCH] HTTP Server disabled by default --- include/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Common.h b/include/Common.h index b75caef..c61f98b 100644 --- a/include/Common.h +++ b/include/Common.h @@ -42,7 +42,7 @@ public: std::string Key {}; std::string SSLKeyPath { "./.ssl/HttpServer/key.pem" }; std::string SSLCertPath { "./.ssl/HttpServer/cert.pem" }; - bool HTTPServerEnabled { true }; + bool HTTPServerEnabled { false }; int MaxPlayers { 10 }; bool Private { true }; int MaxCars { 1 };