aboutsummaryrefslogtreecommitdiffhomepage
path: root/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app.js')
-rwxr-xr-xapp.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.js b/app.js
index 5cc70f4..a13ce03 100755
--- a/app.js
+++ b/app.js
@@ -25,7 +25,7 @@ router.put('/api/files/*', auth.ldap, multipart, files.put);
25router.delete('/api/files/*', auth.ldap, files.del); 25router.delete('/api/files/*', auth.ldap, files.del);
26 26
27// healthcheck in case / does not serve up any file yet 27// healthcheck in case / does not serve up any file yet
28router.get('/', function (req, res) { res.sendfile(path.join(__dirname, '/app/welcome.html')); }); 28router.get('/', function (req, res) { res.sendFile(path.join(__dirname, '/app/welcome.html')); });
29 29
30app.use(morgan('dev')); 30app.use(morgan('dev'));
31app.use(compression()); 31app.use(compression());