Skip to content

Fix a WSL command in the Symfony Server doc #19956

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
Jun 17, 2024
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
10 changes: 8 additions & 2 deletions setup/symfony_server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,14 @@ words, it does everything for you.
If you are doing this in WSL (Windows Subsystem for Linux), the newly created
local certificate authority needs to be manually imported in Windows. The file
is located in ``wsl`` at ``~/.symfony5/certs/default.p12``. The easiest way to
do so is to run ``explorer.exe \`wslpath -w $HOME/.symfony5/certs\``` from ``wsl``
and double-click the ``default.p12`` file.
do so is to run the following command from ``wsl``:

.. code-block:: terminal

$ explorer.exe `wslpath -w $HOME/.symfony5/certs`

In the file explorer window that just opened, double-click on the file
called ``default.p12``.

Before browsing your local application with HTTPS instead of HTTP, restart its
server stopping and starting it again.
Expand Down
Loading