diff options
Diffstat (limited to 'src/auditor')
| -rw-r--r-- | src/auditor/auditor.conf | 2 | ||||
| -rw-r--r-- | src/auditor/taler-auditor-httpd.c | 16 | 
2 files changed, 9 insertions, 9 deletions
| diff --git a/src/auditor/auditor.conf b/src/auditor/auditor.conf index 27083628..5ec70346 100644 --- a/src/auditor/auditor.conf +++ b/src/auditor/auditor.conf @@ -17,7 +17,7 @@ AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv  # What is the Web site of the auditor (i.e. to file complaints about  # a misbehaving exchange)? -# BASE_URL = https://auditor.taler.net/ +BASE_URL = http://localhost:8083/  # Network configuration for the normal API/service HTTP server diff --git a/src/auditor/taler-auditor-httpd.c b/src/auditor/taler-auditor-httpd.c index a212eddc..68316082 100644 --- a/src/auditor/taler-auditor-httpd.c +++ b/src/auditor/taler-auditor-httpd.c @@ -132,7 +132,7 @@ handle_mhd_completion_callback (void *cls,  /** - * Handle a "/version" request. + * Handle a "/config" request.   *   * @param rh context of the handler   * @param connection the MHD connection to handle @@ -142,11 +142,11 @@ handle_mhd_completion_callback (void *cls,   * @return MHD result code    */  static MHD_RESULT -handle_version (struct TAH_RequestHandler *rh, -                struct MHD_Connection *connection, -                void **connection_cls, -                const char *upload_data, -                size_t *upload_data_size) +handle_config (struct TAH_RequestHandler *rh, +               struct MHD_Connection *connection, +               void **connection_cls, +               const char *upload_data, +               size_t *upload_data_size)  {    static json_t *ver; /* we build the response only once, keep around for next query! */ @@ -207,9 +207,9 @@ handle_mhd_request (void *cls,      { "/exchanges", MHD_HTTP_METHOD_GET, "application/json",        NULL, 0,        &TAH_EXCHANGES_handler, MHD_HTTP_OK }, -    { "/version", MHD_HTTP_METHOD_GET, "application/json", +    { "/config", MHD_HTTP_METHOD_GET, "application/json",        NULL, 0, -      &handle_version, MHD_HTTP_OK }, +      &handle_config, MHD_HTTP_OK },      /* Landing page, for now tells humans to go away       * (NOTE: ideally, the reverse proxy will respond with a nicer page) */      { "/", MHD_HTTP_METHOD_GET, "text/plain", | 
