bootique / bootique-jetty

Provides Jetty integration with Bootique

Home Page:https://bootique.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unable to set connector host to `*`

stariy95 opened this issue · comments

Documentation states that * value is default and means listen to all hosts. This works perfectly fine if host parameter is missing in the config but when this value is used explicitly it leads to an error like this:
Failed to bind to */<unresolved>:8080

Configuration to test this:

jetty:
  connectors:
    - host: '*'
      port: 8080
      type: http

+1. I guess it is safe to treat * as a special host name and add special handling for it.