lego/providers/dns/httpreq/readme.md

34 lines
614 B
Markdown
Raw Normal View History

2018-11-08 17:51:13 +00:00
# HTTP request
The server must provide:
- `POST` `/present`
2018-11-08 22:39:19 +00:00
- `POST` `/cleanup`
2018-11-08 17:51:13 +00:00
The URL of the server must be define by `HTTPREQ_ENDPOINT`.
## Mode
There are 2 modes (`HTTPREQ_MODE`):
- default mode:
```json
{
"fqdn": "_acme-challenge.domain.",
"value": "LHDhK3oGRvkiefQnx7OOczTY5Tic_xZ6HcMOc_gmtoM"
}
```
- `RAW`
```json
{
"domain": "domain",
"token": "token",
"keyAuth": "key"
}
```
## Authentication
Basic authentication (optional) can be set with some environment variables:
- `HTTPREQ_USERNAME` and `HTTPREQ_PASSWORD`
- both values must be set, otherwise basic authentication is not defined.