From 0ad87355191b7394082e70ff83e05ddab697c791 Mon Sep 17 00:00:00 2001 From: Simon Hardt Date: Tue, 1 Jun 2021 20:14:08 +0200 Subject: [PATCH] Add: Website mounts --- Modules/Server/src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Modules/Server/src/main.cpp b/Modules/Server/src/main.cpp index b191919..b45fb4c 100644 --- a/Modules/Server/src/main.cpp +++ b/Modules/Server/src/main.cpp @@ -69,7 +69,8 @@ int main() httplib::Server srv; srv.set_mount_point("/", "www/"); - srv.set_mount_point("/test", "www/"); + srv.set_mount_point("/files", "www/"); + srv.set_mount_point("/status", "www/"); Api api(sql, srv);