Updating prod config
This commit is contained in:
parent
8e37bce7c7
commit
8e16295244
1 changed files with 14 additions and 1 deletions
|
@ -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'",
|
||||||
|
|
Reference in a new issue