Support string lists in http server_host and note new default (dual stack, IPv4 and IPv6) (#14125)

Also note that the HTTP component now listens on IPv4 as well as IPv6.
This commit is contained in:
Stefan Agner 2020-08-04 16:27:02 +02:00 committed by GitHub
parent 12b83ab633
commit 6893b80741
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,9 +33,9 @@ http:
{% configuration %} {% configuration %}
server_host: server_host:
description: "Only listen to incoming requests on specific IP/host. By default it will accept all IPv4 connections. Use `server_host: ::0` if you want to listen to (and only) IPv6." description: "Only listen to incoming requests on specific IP/host. By default the `http` integration will accept all IPv4 and IPv6 connections. Use `server_host: 0.0.0.0` if you want to only listen to IPv4 addresses."
required: false required: false
type: string type: [list, string]
default: 0.0.0.0 default: 0.0.0.0
server_port: server_port:
description: Let you set a port to use. description: Let you set a port to use.