Updating prod config

This commit is contained in:
Matthew Dillon 2015-03-23 14:23:36 -08:00
parent 8e37bce7c7
commit 8e16295244

View file

@ -68,9 +68,22 @@ module.exports = function(environment) {
if (environment === 'production') { if (environment === 'production') {
ENV['simple-auth'] = { ENV['simple-auth'] = {
authorizer: 'authorizers:custom', authorizer: 'simple-auth-authorizer:token',
crossOriginWhitelist: ['https://bactdb.herokuapp.com'] 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.apiURL = 'https://bactdb.herokuapp.com';
ENV.contentSecurityPolicy = { ENV.contentSecurityPolicy = {
'default-src': "'none'", 'default-src': "'none'",