Files
ax_hub_mcp_tool/nginx/blue.conf
2026-07-24 17:46:46 +09:00

13 lines
222 B
Plaintext

upstream gateway {
server gateway-blue:8081;
}
server {
listen 8281;
location / {
add_header Content-Type text/html;
return 200 '<html><body><h1>Nginx Static Page</h1></body></html>';
}
}