File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -150,11 +150,12 @@ Example settings for project that both issues and validates tokens for `myapp` a
150150 'SESSION_AUDIENCE': ['myapp'],
151151 'AUTHORIZATION_AUDIENCE': ['myapp', 'otherapp'],
152152 'ACCEPTED_ISSUERS': ['myapp'],
153+ 'KEY_STORE_ROOT': '/srv/myapp/keys',
153154 'PUBLIC_KEYS': {
154- 'myapp': 'keys/ myapp-20180101.pem', # both private/public key in same file
155+ 'myapp': [' myapp-20200410.pem', 'myapp- 20180101.pem'] , # both private/public key in the same file
155156 },
156157 'PRIVATE_KEYS': {
157- 'myapp': 'keys/ myapp-20180101.pem', # both private/public key in same file
158+ 'myapp': [' myapp-20200410.pem', 'myapp- 20180101.pem'] , # both private/public key in the same file
158159 },
159160 }
160161
@@ -165,8 +166,9 @@ Example settings for project that only accepts tokens signed by `myapp` public k
165166 'VERIFY_SESSION_TOKEN': False,
166167 'IDENTITY': 'otherapp',
167168 'ACCEPTED_ISSUERS': ['myapp'],
169+ 'KEY_STORE_ROOT': '/srv/otherapp/keys',
168170 'PUBLIC_KEYS': {
169- 'myapp': 'keys/ myapp-20180101.pem', # only public key in this file
171+ 'myapp': [' myapp-20200410.pem', 'myapp- 20180101.pem'] , # only public keys in these files
170172 },
171173 }
172174
You can’t perform that action at this time.
0 commit comments