commit afc52d52a6abf0d56c6805fbcea359e0b7e4f1ac
parent de378c5c4c0c5d7a213c5c4ba22cf260bbb319f3
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 5 Aug 2020 17:44:21 +0200
server /config also per instance
Diffstat:
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c
@@ -1016,6 +1016,13 @@ url_handler (void *cls,
.skip_instance = true,
.handler = &MH_handler_config
},
+ /* Also serve the same /config per instance */
+ {
+ .url_prefix = "/config",
+ .method = MHD_HTTP_METHOD_GET,
+ .skip_instance = false,
+ .handler = &MH_handler_config
+ },
/* POST /orders/$ID/abort: */
{
.url_prefix = "/orders/",