From 7cf4d1d8fb174a95b149deded4d93c33d46409cb Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sun, 17 May 2020 14:32:29 +0200 Subject: Cert reload workaround --- https.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'https.cpp') diff --git a/https.cpp b/https.cpp index a5aa118..0cbce8e 100644 --- a/https.cpp +++ b/https.cpp @@ -632,12 +632,14 @@ namespace HTTPS { Server::Server(Config& config, boost::asio::io_context& ioc, const Socket& socket, plugins_container_type& plugins, Statistics& statistics) : ::Server(config, ioc, socket, plugins, statistics) , m_certificates_timer(ioc, boost::asio::chrono::seconds(certificates_timer_seconds)) +#if 0 // problem: at this point, privileges are dropped and access to certbot keys is limited. File re-load fails with exception. , m_certificates_timer_callback { [&](const boost::system::error_code& error){ reload_certificates(); m_certificates_timer.expires_at(m_certificates_timer.expires_at() + boost::asio::chrono::seconds(certificates_timer_seconds)); m_certificates_timer.async_wait(m_certificates_timer_callback); }} +#endif { load_certificates(); // load initially -- cgit v1.2.3