Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 863 Bytes

README.md

File metadata and controls

36 lines (28 loc) · 863 Bytes

oidc-configured

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.

  1. Copy the configured index, feel free to check the diff after you do
cp 01-oidc-configured/index.js src
  1. Install the dependencies and generate keystores
yarn
node 01-oidc-configured/generate-keys
  1. Commit to your local repo
git add .
git commit -a -m 'added keystores, enabled features'
  1. Deploy to heroku
git push heroku master
  1. Done!
heroku open '/.well-known/openid-configuration' # to see your new openid-configuration, now much with much more content

Next up 02-oidc-adapter