diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,6 +26,8 @@ struct Site std::string name; std::unordered_set<std::string> hosts; std::vector<Path> paths; + fs::path cert_path; + fs::path key_path; }; enum class SocketProtocol @@ -40,8 +42,6 @@ struct Socket std::string port; SocketProtocol protocol; std::vector<std::string> serve_sites; // if empty, automatically expand to all configured sites - fs::path cert_path; - fs::path key_path; }; class Config |