From 8e16295244445e2ec5b3d55173428664d7df86de Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 23 Mar 2015 14:23:36 -0800 Subject: [PATCH] Updating prod config --- config/environment.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/config/environment.js b/config/environment.js index 73ce9e4..f7ffa20 100644 --- a/config/environment.js +++ b/config/environment.js @@ -68,9 +68,22 @@ module.exports = function(environment) { if (environment === 'production') { ENV['simple-auth'] = { - authorizer: 'authorizers:custom', + authorizer: 'simple-auth-authorizer:token', crossOriginWhitelist: ['https://bactdb.herokuapp.com'] } + ENV['simple-auth-token'] = { + serverTokenEndpoint: 'https://bactdb.herokuapp.com/api/authenticate', + identificationField: 'username', + passwordField: 'password', + tokenPropertyName: 'token', + authorizationPrefix: 'Bearer ', + authorizationHeaderName: 'Authorization', + refreshAccessTokens: true, + serverTokenRefreshEndpoint: 'https://bactdb.herokuapp.com/api/authenticate', + tokenExpireName: 'exp', + refreshLeeway: 300, + timeFactor: 1 + } ENV.apiURL = 'https://bactdb.herokuapp.com'; ENV.contentSecurityPolicy = { 'default-src': "'none'",