summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-08-23 21:52:33 +0200
committerChristian Grothoff <christian@grothoff.org>2022-08-23 21:52:33 +0200
commitc5a97df81d51dcc56310b76ad65eb716ce767aef (patch)
treeb8b300ce212abb2a8fdb4c7b77a5c6576220a4bd /bin
parent7312a1645c99aaaecd581ceec415e42879d3c969 (diff)
downloaddeployment-c5a97df81d51dcc56310b76ad65eb716ce767aef.tar.gz
deployment-c5a97df81d51dcc56310b76ad65eb716ce767aef.tar.bz2
deployment-c5a97df81d51dcc56310b76ad65eb716ce767aef.zip
-fix url issue
Diffstat (limited to 'bin')
-rwxr-xr-xbin/taler-deployment-config-generate2
-rw-r--r--bin/taler_urls.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/bin/taler-deployment-config-generate b/bin/taler-deployment-config-generate
index 57c93b3..0db9ee7 100755
--- a/bin/taler-deployment-config-generate
+++ b/bin/taler-deployment-config-generate
@@ -100,7 +100,7 @@ def config(obj):
obj.cfg_put("kyc-legitimization-merge", "TIMEFRAME", "1d");
obj.cfg_put("bank", "serve", "http")
- obj.cfg_put("bank", "http_port", get_port(urls["bank"]))
+ obj.cfg_put("bank", "http_port", urls["libeufin"])
obj.cfg_put("bank", "max_debt", "%s:500.0" % obj.currency)
obj.cfg_put("bank", "max_debt_bank", "%s:1000000000.0" % obj.currency)
obj.cfg_put("bank", "allow_registrations", "YES")
diff --git a/bin/taler_urls.py b/bin/taler_urls.py
index 8c81e38..ceb575b 100644
--- a/bin/taler_urls.py
+++ b/bin/taler_urls.py
@@ -5,6 +5,7 @@ taler_urls = dict(
donations = "https://donations.{}.taler.net/",
blog = "https://shop.{}.taler.net/",
bank = "https://bank.{}.taler.net/",
+ libeufin = "http://bank.{}.taler.net:5582/",
backoffice = "https://backoffice.{}.taler.net/",
exchange = "https://exchange.{}.taler.net/",
merchant_backend = "https://backend.{}.taler.net/",
@@ -18,6 +19,7 @@ taler_urls = dict(
donations = "http://localhost:5880/",
blog = "http://localhost:5881/",
bank = "http://localhost:5882/",
+ libeufin = "http://localhost:5882/",
backoffice = "http://localhost:5883/",
exchange = "http://localhost:5884/",
merchant_backend = "http://localhost:5885/",