summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--taler-merchant-backoffice.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/taler-merchant-backoffice.in b/taler-merchant-backoffice.in
index 976c5f2..2d6ec73 100644
--- a/taler-merchant-backoffice.in
+++ b/taler-merchant-backoffice.in
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""
-Stand-alone script to manage the GNU Taler blog frontend.
+Stand-alone script to manage the GNU Taler backoffice.
"""
import logging
@@ -34,7 +34,7 @@ def handle_serve_http(args):
"--die-on-term",
"--log-format", UWSGI_LOGFMT,
"--http", spec,
- "--wsgi-file", "@prefix@/share/taler/frontend-blog.wsgi")
+ "--wsgi-file", "@prefix@/share/taler/backoffice.wsgi")
def handle_serve_uwsgi(args):
del args # pacify PEP checkers
@@ -43,7 +43,7 @@ def handle_serve_uwsgi(args):
"--master",
"--die-on-term",
"--log-format", UWSGI_LOGFMT,
- "--wsgi-file", "@prefix@/share/taler/frontend-blog.wsgi"]
+ "--wsgi-file", "@prefix@/share/taler/backoffice.wsgi"]
if serve_uwsgi == "tcp":
port = TC["backoffice-%s" args.frontend]["uwsgi_port"].value_int(required=True)
spec = ":%d" % (port,)