# Default nginx configuration # The agent can dynamically modify this to route traffic as needed server { listen 80; server_name localhost; # Default health check location /health { access_log off; return 200 "nginx ok\n"; add_header Content-Type text/plain; } # Default stub - agent configures actual routing location / { return 200 "NxMesh Data Plane\n"; add_header Content-Type text/plain; } }