Removed example for health check endpoint because it is misleading. (#181)

This commit is contained in:
Marvin Blum 2019-10-21 15:13:22 +02:00 committed by Joona Hoikkala
parent aa3e7e1b75
commit 88d3be685e

View File

@ -108,22 +108,6 @@ The method can be used to check readiness and/or liveness of the server. It will
```GET /health```
#### Example using a Kubernetes deployment
```
# ...
readinessProbe:
httpGet:
path: /health
port: 80
periodSeconds: 2
initialDelaySeconds: 2
failureThreshold: 3
successThreshold: 1
livenessProbe:
# same as for readinessProbe...
```
## Self-hosted
You are encouraged to run your own acme-dns instance, because you are effectively authorizing the acme-dns server to act on your behalf in providing the answer to the challenging CA, making the instance able to request (and get issued) a TLS certificate for the domain that has CNAME pointing to it.