Skip to content

Commit

Permalink
config on node
Browse files Browse the repository at this point in the history
  • Loading branch information
JHoldergov committed Dec 29, 2023
1 parent db9701b commit ccf462c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,13 @@ module.exports = {
secret: process.env.KEYCLOAK_SECRET
},
};
const https = require('https');
const fs = require('fs');

const options = {
ca: fs.readFileSync('/etc/ssl/certs/ims-prp1-ca.crt')
};

https.get('https://ho-it-prp1-i-ie-ims.report-and-manage-intelligence.np.immigrationservices.phz/lagan/services/FL', options, (res) => {
// Handle the response
});

0 comments on commit ccf462c

Please sign in to comment.