From 42b4b35f466331806889d4308145ce204dafdcca Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 24 Jul 2017 13:32:12 +0200 Subject: [PATCH] Mentioned the use of the '*' IP address in the web server --- setup/built_in_web_server.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup/built_in_web_server.rst b/setup/built_in_web_server.rst index d8d74dac183..f543921c093 100644 --- a/setup/built_in_web_server.rst +++ b/setup/built_in_web_server.rst @@ -33,8 +33,15 @@ can change the socket passing an IP address and a port as a command-line argumen .. code-block:: terminal + # passing a specific IP and port $ php bin/console server:start 192.168.0.1:8080 + # passing '*' as the IP means to use 0.0.0.0 (i.e. any local IP address) + $ php bin/console server:start *:8080 + +.. versionadded:: 3.4 + The support of ``*`` as a valid IP address was introduced in Symfony 3.4. + .. note:: You can use the ``server:status`` command to check if a web server is