Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
fix: silence nginx healthcheck logs
  • Loading branch information
jennifer-richards committed Jul 16, 2024
commit 7cfe5afb3e0f29324c3129c0c2545ba6264ba1b1
1 change: 1 addition & 0 deletions k8s/nginx-auth.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ server {
# Note that regex location matches take priority over non-regex "prefix" matches. Use regexes so that
# our deny all rule does not squelch the other locations.
location ~ ^/health/nginx$ {
access_log off;
return 200;
}

Expand Down
1 change: 1 addition & 0 deletions k8s/nginx-datatracker.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ server {
server_name _;

location /health/nginx {
access_log off;
return 200;
}

Expand Down