summaryrefslogtreecommitdiffhomepage
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.h b/config.h
index 1c938c0..801b5fa 100644
--- a/config.h
+++ b/config.h
@@ -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