1

Unable to run the node.js application created in Bluemix environment even after setting the variable FIPS_MODE to true on CF CLI.

Javediq
  • 184
  • 9

1 Answers1

2

If the node.js version 6 is used we would need to explicitly include the variable -enable-fips in the start command

eg: { "start": "node --enable-fips app.js" }

Javediq
  • 184
  • 9