From 3efc449e94d1bc1f0b93404dc31a64b25b062019 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 28 Jan 2015 12:14:55 -0900 Subject: [PATCH] Set up production env --- config/environment.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/config/environment.js b/config/environment.js index 43ef4fb..0fd1dbc 100644 --- a/config/environment.js +++ b/config/environment.js @@ -54,7 +54,20 @@ module.exports = function(environment) { } if (environment === 'production') { - + ENV['simple-auth'] = { + authorizer: 'authorizers:custom', + crossOriginWhitelist: ['https://bactdb.herokuapp.com'] + } + ENV.apiURL = 'https://bactdb.herokuapp.com'; + ENV.contentSecurityPolicy = { + 'default-src': "'none'", + 'script-src': "'self'", + 'font-src': "'self'", + 'connect-src': "'self' https://bactdb.herokuapp.com", + 'img-src': "'self'", + 'style-src': "'self'", + 'media-src': "'self'" + } } return ENV;