From 895314ebf052f572a035a4416c9264af6a9953f2 Mon Sep 17 00:00:00 2001 From: Gregory Magarshak Date: Mon, 20 Jul 2026 10:31:47 -0400 Subject: [PATCH] Updated filenames referenced in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6d4c3d3..471d3a5 100644 --- a/README.md +++ b/README.md @@ -27,15 +27,15 @@ One process serves static files, PHP scripts, WebSocket connections, and a live ```bash # Clone -git clone https://github.com/Qbix/Server.git -cd Server +git clone https://github.com/Qbix/webserver.git +cd webserver # Create a web directory mkdir web echo '

Hello World

' > web/index.html # Run -php server.php --port=8080 +php qbixserver.php --port=8080 ``` Open [http://localhost:8080](http://localhost:8080). That's it.