We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab53d29 commit 42b4b35Copy full SHA for 42b4b35
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
33
34
.. code-block:: terminal
35
36
+ # passing a specific IP and port
37
$ php bin/console server:start 192.168.0.1:8080
38
39
+ # passing '*' as the IP means to use 0.0.0.0 (i.e. any local IP address)
40
+ $ php bin/console server:start *:8080
41
+
42
+.. versionadded:: 3.4
43
+ The support of ``*`` as a valid IP address was introduced in Symfony 3.4.
44
45
.. note::
46
47
You can use the ``server:status`` command to check if a web server is
0 commit comments