# httpbin Deploys [httpbin](https://httpbin.org/) (`kennethreitz/httpbin`) via Docker Compose behind Traefik. Useful as a throwaway endpoint to verify that the Traefik ingress path, TLS and routing work end to end. ## Role variables | Variable | Default | Description | | --- | --- | --- | | `httpbin_domain` | `httpbin.local.test` | FQDN the Traefik router matches. | | `httpbin_image` | `kennethreitz/httpbin` | Container image. | | `httpbin_port` | `80` | Container port Traefik forwards to. | | `httpbin_traefik_network` | `proxy` | Docker network shared with Traefik. | | `httpbin_use_ssl` | `true` | Route via the `websecure` entrypoint with `tls=true` (otherwise `web`). | ## Example ```yaml - hosts: services become: true roles: - role: digitalboard.core.httpbin vars: httpbin_domain: "httpbin.example.com" ``` ## License MIT-0