From 6893b807419e368f2a99fa6ed16daec7b71bb3d0 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Tue, 4 Aug 2020 16:27:02 +0200 Subject: [PATCH] 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. --- source/_integrations/http.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_integrations/http.markdown b/source/_integrations/http.markdown index 58f6c46f56a..c4933c258cd 100644 --- a/source/_integrations/http.markdown +++ b/source/_integrations/http.markdown @@ -33,9 +33,9 @@ http: {% configuration %} 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 - type: string + type: [list, string] default: 0.0.0.0 server_port: description: Let you set a port to use.