Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.19.5-1

* Change health check port from `18080` to `18081`.

## 1.19.5

* Initial release.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
```
Expand All @@ -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`.
2 changes: 1 addition & 1 deletion config/http.conf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ http {
include /etc/nginx/app.conf;

server {
listen 18080 default_server;
listen 18081 default_server;

location /healthz {
access_log off;
Expand Down