List server directory

To get the list of functions, supported by the server, and their URL, ACME client must send a GET request to the ACME server base URL:

GET https://stica.peeringhub.io/acme

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 247
{
  "newNonce" : "https://stica.peeringhub.io/acme/new-nonce",
  "newAccount" : "https://stica.peeringhub.io/acme/new-account",
  "newOrder" : "https://stica.peeringhub.io/acme/new-order",
  "keyChange" : "https://stica.peeringhub.io/acme/key-change"
}

List of the supported functions and their URLs are not standard, and may change over time. Requests below in this document must be sent to the corresponding URL from the received list.

Last updated