docs/content/dns/zz_gen_httpreq.md
Configuration for HTTP request.
<!--more-->httpreqHere is an example bash command using the HTTP request provider:
HTTPREQ_ENDPOINT=http://my.server.com:9090 \
lego --dns httpreq -d '*.example.com' -d example.com run
| Environment Variable Name | Description |
|---|---|
HTTPREQ_ENDPOINT | The URL of the server |
HTTPREQ_MODE | RAW, none |
The environment variable names can be suffixed by _FILE to reference a file instead of a value.
More information [here]({{% ref "dns#configuration-and-credentials" %}}).
| Environment Variable Name | Description |
|---|---|
HTTPREQ_HTTP_TIMEOUT | API request timeout in seconds (Default: 30) |
HTTPREQ_PASSWORD | Basic authentication password |
HTTPREQ_POLLING_INTERVAL | Time between DNS propagation check in seconds (Default: 2) |
HTTPREQ_PROPAGATION_TIMEOUT | Maximum waiting time for DNS propagation in seconds (Default: 60) |
HTTPREQ_USERNAME | Basic authentication username |
The environment variable names can be suffixed by _FILE to reference a file instead of a value.
More information [here]({{% ref "dns#configuration-and-credentials" %}}).
The server must provide:
POST /presentPOST /cleanupThe URL of the server must be defined by HTTPREQ_ENDPOINT.
There are 2 modes (HTTPREQ_MODE):
{
"fqdn": "_acme-challenge.domain.",
"value": "LHDhK3oGRvkiefQnx7OOczTY5Tic_xZ6HcMOc_gmtoM"
}
RAW{
"domain": "domain",
"token": "token",
"keyAuth": "key"
}
Basic authentication (optional) can be set with some environment variables:
HTTPREQ_USERNAME and HTTPREQ_PASSWORD