This commit is contained in:
Your Name
2025-04-30 21:39:07 +12:00
parent fe9c940a22
commit aa234ebef5
2 changed files with 9 additions and 8 deletions

View File

@@ -107,7 +107,7 @@ void Server::handle_connection(int client_socket) {
return;
}
if (path == "/index.html") {
if (path == "/index.html" || path == "/") {
send_response(client_socket, 200, "text/html",
"<html><body><h1>Dropshell Template Registry</h1></body></html>");
return;