Skip to content

Commit e86a7dd

Browse files
committed
Fixing location to read keys
1 parent 423c1b2 commit e86a7dd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

server/routes/auth.routes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ const CO_ROLE = 3
4141
const EXEC_ROLE = 4
4242

4343
// Load your RSA private key
44-
const privateKey = fs.readFileSync(path.resolve(__dirname,'../config/certs/private.pem'), 'utf8');
45-
const publicKey = fs.readFileSync(path.resolve(__dirname,'../config/certs/public.crt'), 'utf8');
44+
const privateKey = fs.readFileSync(path.resolve(__dirname,'../certs/private.pem'), 'utf8');
45+
const publicKey = fs.readFileSync(path.resolve(__dirname,'../certs/public.crt'), 'utf8');
4646
/**
4747
* Update a user record in the database to reflect updated info from MAX CAS
4848
*

0 commit comments

Comments
 (0)