Skip to content

Commit 3ea743e

Browse files
author
imWildCat
committedSep 27, 2024
address review feedbacks
1 parent ceaa967 commit 3ea743e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed
 

‎docs/upgrading/configuration-changes.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,20 @@ The healthcheck section has been removed.
7272

7373
For roles running with a proxy, the healthchecks are performed externally by kamal-proxy, not via internal Docker healthchecks. You can configure the them under [proxy/healthcheck](../../configuration/proxy#healthcheck).
7474

75-
```
75+
```yaml
7676
proxy:
7777
healthcheck:
7878
path: /health
7979
interval: 2
8080
timeout: 2
8181
```
8282

83-
Please note the default port for healthcheck is changed from `3000` to `80`. You might need to change this port back to `3000` if you are upgrading from v1.
83+
Please note that the healthchecks will use the app_port setting which defaults to port 80. Previously healthchecks defaulted to port 3000. You can change this back with:
84+
85+
```yaml
86+
proxy:
87+
app_port: 3000
88+
```
8489

8590
### Non-proxy roles
8691

0 commit comments

Comments
 (0)
Please sign in to comment.