summaryrefslogtreecommitdiff
path: root/taler-merchant-backoffice.in
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2018-01-05 12:26:36 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2018-01-05 12:26:36 +0100
commit8a3bc7b1fcbb257f31ad988f0587699ff2ec995b (patch)
tree0a1c0146d4fffaa9b23ab465d147ee94ece242e0 /taler-merchant-backoffice.in
parent8291b60dcde71177436189494b0576612bef1340 (diff)
downloadbackoffice-8a3bc7b1fcbb257f31ad988f0587699ff2ec995b.tar.gz
backoffice-8a3bc7b1fcbb257f31ad988f0587699ff2ec995b.tar.bz2
backoffice-8a3bc7b1fcbb257f31ad988f0587699ff2ec995b.zip
rename uwsgi handle
Diffstat (limited to 'taler-merchant-backoffice.in')
-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,)