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