summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKristofer Hallin <kristofer@sunet.se>2021-11-16 14:38:30 +0100
committerKristofer Hallin <kristofer@sunet.se>2021-11-16 14:38:30 +0100
commitbd5e9b5a7a188295d8731d560dff1e59c1587666 (patch)
treecc044e49a339a2515b96d43bf6c6824e24531bb9 /src
parente3f44b192a23f0336e8610848ed4341bb683afda (diff)
/opt/cert -> /opt/certs
Diffstat (limited to 'src')
-rwxr-xr-xsrc/wsgi.py2
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()