diff options
author | Erik Johnston <erik@matrix.org> | 2016-04-21 17:42:25 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-04-21 17:42:25 +0100 |
commit | b9675ef6e694c7f7f40bee5e4730866c7f217259 (patch) | |
tree | 4370ef1247309b2d929a5d52fe266f90cfcfb7d6 /synapse/config | |
parent | Merge pull request #743 from matrix-org/markjh/slave_pushers (diff) | |
parent | Fix issues with JWT login (diff) | |
download | synapse-b9675ef6e694c7f7f40bee5e4730866c7f217259.tar.xz |
Merge pull request #687 from nikriek/jwt-fix
Fix issues with JWT login
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/jwt.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/config/jwt.py b/synapse/config/jwt.py index 4cb092bbec..5c8199612b 100644 --- a/synapse/config/jwt.py +++ b/synapse/config/jwt.py @@ -30,6 +30,8 @@ class JWTConfig(Config): def default_config(self, **kwargs): return """\ + # The JWT needs to contain a globally unique "sub" (subject) claim. + # # jwt_config: # enabled: true # secret: "a secret" |