Previous 00-oidc-minimal
Extending the minimal configuration with a custom signing and encryption keystore, internal token integrity keys as well as enabling a set of optional features. Steps assume you've finished the previous steps.
- Copy the configured index, feel free to check the diff after you do
cp 01-oidc-configured/index.js src
- Install the dependencies and generate keystores
yarn
node 01-oidc-configured/generate-keys
- Commit to your local repo
git add .
git commit -a -m 'added keystores, enabled features'
- Deploy to heroku
git push heroku master
- Done!
heroku open '/.well-known/openid-configuration' # to see your new openid-configuration, now much with much more content
Next up 02-oidc-adapter