Skip to content

Commit c94f04c

Browse files
authored
Update example domain to a testing domain managed by the IANA (#174)
1 parent 78e911b commit c94f04c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/guide/self-hosting/health-checks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ We have added some health-check endpoints to the API, so that you can monitor th
99
The simple health-check endpoint does not check any dependencies, and only validates that the given endpoint is reachable. You can use it to check whether your container is still running, or to validate your port mapping or DNS configuration.
1010

1111
```bash
12-
curl https://yourdomain.com:5701/api/health/http
12+
curl https://example.com:5701/api/health/http
1313
```
1414

1515
Returns a `200 OK` if the API is running with the body `Healthy`.
@@ -19,7 +19,7 @@ Returns a `200 OK` if the API is running with the body `Healthy`.
1919
To validate that your database configuration has been done correctly, you can use the database health-check endpoint. This endpoint will validate that the database is reachable, and that the database schema is up-to-date.
2020

2121
```bash
22-
curl https://yourdomain.com:5701/api/health/storage
22+
curl https://example.com:5701/api/health/storage
2323
```
2424

2525
Will return the following response as a `200 OK`. When the database is not configured correctly or unreachable, it will return a `503 Service Unavailable`.
@@ -54,7 +54,7 @@ For a successful response, like the one below you may find the following keys un
5454
To validate that your e-mail configuration has been done correctly, you can use the e-mail health-check endpoint. This endpoint will validate that the e-mail server is reachable, and that the e-mail credentials are correct.
5555

5656
```bash
57-
curl https://yourdomain.com:5701/api/health/mail
57+
curl https://example.com:5701/api/health/mail
5858
```
5959

6060
#### Default (Not configured)

0 commit comments

Comments
 (0)