16 lines
487 B
Plaintext
16 lines
487 B
Plaintext
server {
|
|
listen 80;
|
|
server_name harbor-fixture.stella-ops.local;
|
|
|
|
location = /api/v2.0/health {
|
|
default_type application/json;
|
|
add_header X-Harbor-Version 2.10.0 always;
|
|
return 200 '{"status":"healthy","components":[{"name":"core","status":"healthy"},{"name":"jobservice","status":"healthy"},{"name":"registry","status":"healthy"}]}';
|
|
}
|
|
|
|
location / {
|
|
default_type text/plain;
|
|
return 200 'Stella Ops QA Harbor fixture';
|
|
}
|
|
}
|