This error indicates that your bindinginformation for the site is not in the correct format.
The value for bindingInformation consists of three parts.
ip:port:host
Here are some formats of bindings and their result:
<binding protocol="http" bindingInformation="192.168.1.10:80:www.test.com" /> <binding protocol="http" bindingInformation="192.168.1.10:80:localhost" /> <binding protocol="http" bindingInformation=":80:" /> <binding protocol="https" bindingInformation="*:443:" />
With all the above connections, you can install the https protocol to make your site accessible only through SSL.
source share