Skip to content

Commit 181ff1e

Browse files
authored
Merge pull request #3 from Intellection/change_healthcheck_port
Change health check port from 18080 to 18081
2 parents b497e0c + 056b00a commit 181ff1e

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.19.5-1
4+
5+
* Change health check port from `18080` to `18081`.
6+
37
## 1.19.5
48

59
* Initial release.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ server {
5656
## Logging
5757

5858
To change how logging is configured, mount a file at `/etc/nginx/log.conf`:
59-
```nginx
59+
```nginx
6060
access_log off;
6161
error_log off;
6262
```
@@ -73,4 +73,4 @@ It's important to note that overriding this file will remove the current default
7373

7474
## Health check
7575

76-
A health check is available on port `18080` at `/healthz`.
76+
A health check is available on port `18081` at `/healthz`.

config/http.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ http {
2525
include /etc/nginx/app.conf;
2626

2727
server {
28-
listen 18080 default_server;
28+
listen 18081 default_server;
2929

3030
location /healthz {
3131
access_log off;

0 commit comments

Comments
 (0)