DNS configuration error on fly's side

hi,

This is a known bug in flyctl when you’re using a service with http or tls handlers, and a custom external port. You can get around it by changing:

  [[services.ports]]
    handlers = ["http"]
    port = 9999

to:

  [[services.ports]]
    handlers = ["http"]
    start_port = 9999
    end_port = 9999

This should be temporary while we squash the bug.

Regards,

  • Daniel
2 Likes