diff options
author | Kristofer Hallin <kristofer@sunet.se> | 2021-11-16 14:38:30 +0100 |
---|---|---|
committer | Kristofer Hallin <kristofer@sunet.se> | 2021-11-16 14:38:30 +0100 |
commit | bd5e9b5a7a188295d8731d560dff1e59c1587666 (patch) | |
tree | cc044e49a339a2515b96d43bf6c6824e24531bb9 /src/wsgi.py | |
parent | e3f44b192a23f0336e8610848ed4341bb683afda (diff) |
/opt/cert -> /opt/certs
Diffstat (limited to 'src/wsgi.py')
-rwxr-xr-x | src/wsgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wsgi.py b/src/wsgi.py index 1b257cd..9e028b0 100755 --- a/src/wsgi.py +++ b/src/wsgi.py @@ -32,7 +32,7 @@ def get_pubkey(): if 'keypath' in os.environ: keypath = os.environ['JWT_PUBKEY_PATH'] else: - keypath = '/opt/cert/public.pem' + keypath = '/opt/certs/public.pem' with open(keypath, "r") as fd: pubkey = fd.read() |