new(core.gbapp): New API endpoint.
This commit is contained in:
parent
edb50e3b13
commit
8568f62bdc
1 changed files with 5 additions and 6 deletions
|
@ -312,9 +312,11 @@ export class GBServer {
|
||||||
})();
|
})();
|
||||||
};
|
};
|
||||||
|
|
||||||
// Setups unsecure http redirect.
|
|
||||||
|
|
||||||
if (process.env.NODE_ENV === 'production') {
|
if (process.env.CERTIFICATE_PFX) {
|
||||||
|
|
||||||
|
// Setups unsecure http redirect.
|
||||||
|
|
||||||
const server1 = http.createServer((req, res) => {
|
const server1 = http.createServer((req, res) => {
|
||||||
const host = req.headers.host.startsWith('www.') ?
|
const host = req.headers.host.startsWith('www.') ?
|
||||||
req.headers.host.substring(4) : req.headers.host;
|
req.headers.host.substring(4) : req.headers.host;
|
||||||
|
@ -323,9 +325,6 @@ export class GBServer {
|
||||||
}).end();
|
}).end();
|
||||||
});
|
});
|
||||||
server1.listen(80);
|
server1.listen(80);
|
||||||
}
|
|
||||||
|
|
||||||
if (process.env.CERTIFICATE_PFX) {
|
|
||||||
|
|
||||||
const options1 = {
|
const options1 = {
|
||||||
passphrase: process.env.CERTIFICATE_PASSPHRASE,
|
passphrase: process.env.CERTIFICATE_PASSPHRASE,
|
||||||
|
|
Loading…
Add table
Reference in a new issue