File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 2530
2530
EXAMS_SERVICE_URL = 'http://localhost:18740/api/v1'
2531
2531
EXAMS_SERVICE_USERNAME = 'edx_exams_worker'
2532
2532
2533
+ ############## Settings for JWT token handling ##############
2534
+ TOKEN_SIGNING = {
2535
+ 'JWT_ISSUER' : 'http://127.0.0.1:8740' ,
2536
+ 'JWT_SIGNING_ALGORITHM' : 'RS512' ,
2537
+ 'JWT_SUPPORTED_VERSION' : '1.2.0' ,
2538
+ 'JWT_PRIVATE_SIGNING_JWK' : None ,
2539
+ 'JWT_PUBLIC_SIGNING_JWK_SET' : None ,
2540
+ }
2541
+
2533
2542
FINANCIAL_REPORTS = {
2534
2543
'STORAGE_TYPE' : 'localfs' ,
2535
2544
'BUCKET' : None ,
@@ -2956,3 +2965,4 @@ def _should_send_learning_badge_events(settings):
2956
2965
# .. for now it wil impact country listing in auth flow and user profile.
2957
2966
# .. eg ['US', 'CA']
2958
2967
DISABLED_COUNTRIES = []
2968
+
Original file line number Diff line number Diff line change @@ -4311,6 +4311,7 @@ def _make_locale_paths(settings): # pylint: disable=missing-function-docstring
4311
4311
# Exam Service
4312
4312
EXAMS_SERVICE_URL = 'http://localhost:18740/api/v1'
4313
4313
4314
+ ############## Settings for JWT token handling ##############
4314
4315
TOKEN_SIGNING = {
4315
4316
'JWT_ISSUER' : 'http://127.0.0.1:8740' ,
4316
4317
'JWT_SIGNING_ALGORITHM' : 'RS512' ,
You can’t perform that action at this time.
0 commit comments