docs/ops: merchant portal instance ids must be lowercase (avoid 401)
Document that mixed-case instance ids yield odd HTTP 401 in webui/API. Lowercase MERCHANT_INSTANCE / shop paths defensively in monitoring and landings.
This commit is contained in:
parent
57cf9aa2a1
commit
ba48f334ea
9 changed files with 44 additions and 8 deletions
|
|
@ -9,8 +9,9 @@
|
|||
*/
|
||||
(function () {
|
||||
var MERCHANT_HOST = "taler.hacktivism.ch";
|
||||
/* goa-shop: dedicated instance with fixed-order product templates */
|
||||
var INSTANCE = "goa-shop";
|
||||
/* goa-shop: dedicated instance with fixed-order product templates.
|
||||
* Instance id must stay lowercase (portal/API: capitals → odd 401s). */
|
||||
var INSTANCE = String("goa-shop").toLowerCase();
|
||||
var SHOP_PAYTO =
|
||||
"payto://x-taler-bank/bank.hacktivism.ch/goa-shop?receiver-name=GOA%20Shop";
|
||||
var SHOP_PAYTO_HTTPS = "https://bank.hacktivism.ch/webui/";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue