summaryrefslogtreecommitdiff
path: root/lib/web/auth/ldap/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/web/auth/ldap/index.js')
-rw-r--r--lib/web/auth/ldap/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/web/auth/ldap/index.js b/lib/web/auth/ldap/index.js
index 6aa9789f..ab1cb4cd 100644
--- a/lib/web/auth/ldap/index.js
+++ b/lib/web/auth/ldap/index.js
@@ -84,8 +84,8 @@ ldapAuth.post('/auth/ldap', urlencodedParser, function (req, res, next) {
if (!req.body.username || !req.body.password) return response.errorBadRequest(res)
setReturnToFromReferer(req)
passport.authenticate('ldapauth', {
- successReturnToOrRedirect: config.serverurl + '/',
- failureRedirect: config.serverurl + '/',
+ successReturnToOrRedirect: config.serverURL + '/',
+ failureRedirect: config.serverURL + '/',
failureFlash: true
})(req, res, next)
})