Skip to content

Commit

Permalink
Route agent registry readiness API to agent server (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton-Kalpakchiev authored Dec 12, 2024
1 parent 1f6f59c commit fa42ec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx/config/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
Expand Down Expand Up @@ -40,7 +40,7 @@ server {
gzip on;
gzip_types text/plain test/csv application/json;
location /health {
location ~ ^/(health|readiness)$ {
proxy_pass http://agent-server;
}
Expand Down

0 comments on commit fa42ec5

Please sign in to comment.