diff --git a/CHANGELOG.md b/CHANGELOG.md index d0408a7..31df3f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.19.5-1 + +* Change health check port from `18080` to `18081`. + ## 1.19.5 * Initial release. diff --git a/README.md b/README.md index 56f8f91..7881ef6 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ server { ## Logging To change how logging is configured, mount a file at `/etc/nginx/log.conf`: -```nginx +```nginx access_log off; error_log off; ``` @@ -73,4 +73,4 @@ It's important to note that overriding this file will remove the current default ## Health check -A health check is available on port `18080` at `/healthz`. +A health check is available on port `18081` at `/healthz`. diff --git a/config/http.conf b/config/http.conf index db941ab..f9eb8f6 100644 --- a/config/http.conf +++ b/config/http.conf @@ -25,7 +25,7 @@ http { include /etc/nginx/app.conf; server { - listen 18080 default_server; + listen 18081 default_server; location /healthz { access_log off;