Skip to content

Commit

Permalink
Config for RSA private key according to vercel/vercel#749
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentTam committed Dec 23, 2018
1 parent 26cc96e commit 46eeff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.production.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"gitlabBaseUrl": process.env.GITLAB_BASE_URL,
"gitlabToken": process.env.GITLAB_TOKEN,
"githubToken": process.env.GITHUB_TOKEN,
"rsaPrivateKey": JSON.stringify(process.env.RSA_PRIVATE_KEY),
"rsaPrivateKey": Buffer.from(process.env.RSA_PRIVATE_KEY).toString('base64'),
"port": 8080
}

0 comments on commit 46eeff9

Please sign in to comment.