Skip to content

Commit

Permalink
configuration changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gchauhan-aot committed Jan 21, 2025
1 parent 8661f39 commit c59f064
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scheduler/src/modules/garms/garms.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ export class GarmsService {
async connectToFtp() {
try {
await this.client.access({
host: 'bcsc01.gov.bc.ca', // Replace with your FTPS server host
user: 'PI74967', // Your username for the FTPS server
password: 'dummypwd', // Your password
host: process.env.GARMS_HOST, // Replace with your FTPS server host
user: process.env.GARMS_USER, // Your username for the FTPS server
password: process.env.GARMS_PASSWROD, // Your password
secure: true, // Enabling FTPS (SSL/TLS encryption)
secureOptions: {
rejectUnauthorized: false, // Depending on your certificate, this can be true or false
Expand Down

0 comments on commit c59f064

Please sign in to comment.