8000 Mentioned the use of the '*' IP address in the web server by javiereguiluz · Pull Request #8217 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Mentioned the use of the '*' IP address in the web server #8217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 1, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions setup/built_in_web_server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
0