-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
config.server.js
46 lines (38 loc) · 1.58 KB
/
config.server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* Copyright (c) 2014, Tidepool Project
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the associated License, which is identical to the BSD 2-Clause
* License as published by the Open Source Initiative at opensource.org.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the License for more details.
*
* You should have received a copy of the License along with this program; if
* not, you can obtain one from Tidepool Project at tidepool.org.
*/
var fs = require('fs');
function maybeReplaceWithContentsOfFile(obj, field) {
var potentialFile = obj[field];
if (potentialFile != null && fs.existsSync(potentialFile)) {
obj[field] = fs.readFileSync(potentialFile).toString();
}
}
var config = {};
config.httpPort = process.env.PORT;
config.httpsPort = process.env.HTTPS_PORT;
// The https config to pass along to https.createServer.
var theConfig = process.env.HTTPS_CONFIG;
config.httpsConfig = null;
if (theConfig) {
config.httpsConfig = JSON.parse(theConfig);
maybeReplaceWithContentsOfFile(config.httpsConfig, 'key');
maybeReplaceWithContentsOfFile(config.httpsConfig, 'cert');
maybeReplaceWithContentsOfFile(config.httpsConfig, 'pfx');
}
// Make sure we have an HTTPS config if a port is set
if (config.httpsPort && !config.httpsConfig) {
throw new Error('No https config provided, please set HTTPS_CONFIG with at least the certificate to use.');
}
module.exports = config;