github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/website/content/tools/autoscaling/agent/http.mdx (about) 1 --- 2 layout: docs 3 page_title: http Stanza - Nomad Autoscaler Agent Configuration 4 description: >- 5 The "http" block configures the Nomad Autoscaler's HTTP endpoint. 6 --- 7 8 # `http` Block 9 10 <Placement groups={['http']} /> 11 12 The `http` block configures the Nomad Autoscaler's HTTP endpoint. 13 14 ```hcl 15 http { 16 bind_address = "10.0.0.10" 17 bind_port = 9999 18 } 19 ``` 20 21 ## `http` Parameters 22 23 - `bind_address` `(string: "127.0.0.1")` - The HTTP address that the server will 24 bind to. 25 26 - `bind_port` `(int: 8080)` - The port that the server will bind to.