commit eb23920815cff415b11e06523a1c82743c4adb27
parent 495e6fe0ad61e5484eb7c9471b6c1d94a0d29a2f
Author: Andreas Gruhler <agruhl@gmx.ch>
Date: Mon, 17 Mar 2025 23:18:12 +0100
fix(todo): typos
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hcl/default/todo/templates/config.ini.tmpl b/hcl/default/todo/templates/config.ini.tmpl
@@ -30,7 +30,7 @@ service-key={{with secret "kv/todo"}}{{index .Data.data.service_key}}{{end}}
#
# A secret key to encrypt internal messages with. Use `srht-keygen network` to
# generate this key. It must be consistent between all services and nodes.
-network-key={{with secret "kv/todo"}}{{index .Data.data.service_key}}{{end}}
+network-key={{with secret "kv/todo"}}{{index .Data.data.network_key}}{{end}}
#
# The redis host URL. This is used for caching and temporary storage, and must
# be shared between nodes (e.g. git1.sr.ht and git2.sr.ht), but need not be
diff --git a/hcl/default/todo/templates/uwsgi.ini.tmpl b/hcl/default/todo/templates/uwsgi.ini.tmpl
@@ -2,7 +2,7 @@
# https://uwsgi-docs.readthedocs.io/en/latest/WSGIquickstart.html#putting-behind-a-full-webserver
plugins = python3
socket = :{{ env "NOMAD_PORT_web" }}
-wsgi-file = /todo/metasrht/app.py
+wsgi-file = /todo/todosrht/app.py
callable = app
master = true
processes = 2