diff --git a/server.js b/server.js
index 3312c0bf06d707f31af8b4efb807e068715755ec..d6aedaf066373e1d0bfc026d4223901de4c5f2f7 100644
--- a/server.js
+++ b/server.js
@@ -16,9 +16,7 @@ const credentials = {
 	ca: ca
 };
 
-app.use((req, res) => {
-	res.send('Hello there !');
-});
+app.use(express.static(__dirname));
 
 // Starting both http & https servers
 const httpServer = http.createServer(app);