Skip to content

Fix local proxy URI scheme #11298

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
Apr 5, 2019
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
6 changes: 3 additions & 3 deletions setup/symfony_server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ If this is the first time you run the proxy, you must follow these additional st

* Open the **network configuration** of your operating system;
* Find the **proxy settings** and select the **"Automatic Proxy Configuration"**;
* Set the following URL as its value: ``https://127.0.0.1:7080/proxy.pac``
* Set the following URL as its value: ``http://127.0.0.1:7080/proxy.pac``

Defining the Local Domain
~~~~~~~~~~~~~~~~~~~~~~~~~
Expand All @@ -202,15 +202,15 @@ new custom domain.

.. tip::

Browse the https://127.0.0.1:7080 URL to get the full list of local project
Browse the http://127.0.0.1:7080 URL to get the full list of local project
directories, their custom domains, and port numbers.

When running console commands, add the ``HTTPS_PROXY`` env var to make custom
domains work:

.. code-block:: terminal

$ HTTPS_PROXY=https://127.0.0.1:7080 curl https://my-domain.wip
$ HTTPS_PROXY=http://127.0.0.1:7080 curl https://my-domain.wip

.. tip::

Expand Down