Fixed some small certificate issues

This commit is contained in:
WolverinDEV 2019-11-22 21:31:59 +01:00
parent 755183a144
commit 5efe5037c5
2 changed files with 2 additions and 5 deletions

View File

@ -716,8 +716,7 @@ bool InstanceHandler::reloadConfig(std::vector<std::string>& errors, bool reload
string error;
#ifdef COMPILE_WEB_CLIENT
if(config::web::activated) {
this->sslMgr->unregister_web_contexts();
//TODO: Generate default certificate (con-gate.work)
this->sslMgr->unregister_web_contexts(false);
string error;
for (auto &certificate : config::web::ssl::certificates) {
@ -862,5 +861,6 @@ void InstanceHandler::loadWebCertificate() {
return;
}
this->sslMgr->rename_context(strobf("web_default_new").string(), strobf("web_default").string());
this->web_cert_revision = revision;
}

View File

@ -3,7 +3,6 @@
#include <misc/hex.h>
#include <src/Configuration.h>
#include <arpa/inet.h>
#include <src/SignalHandler.h>
#include <src/ShutdownHelper.h>
#include "src/InstanceHandler.h"
#include "LicenseHelper.h"
@ -14,8 +13,6 @@ using namespace std::chrono;
using namespace ts;
using namespace ts::server;
#define DO_LOCAL_REQUEST
LicenseHelper::LicenseHelper() {
this->scheduled_request = system_clock::now() + seconds(rand() % 30); //Check in one minute
}