Skip to content
Open
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
14 changes: 14 additions & 0 deletions user_guide_src/source/incoming/routing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,15 @@ by passing the "hostname" option along with the desired domain to allow it on as
This example would only allow the specified hosts to work if the domain exactly matched **accounts.example.com**.
It would not work under the main site at **example.com**.

.. note::

The ``hostname`` option is compared against the full ``HTTP_HOST`` value of the
request, including the port when one is present. When your application is served
on a non-standard port (for example ``localhost:8080``, behind Docker, or when
using ``spark server``), you must include the port in the ``hostname`` option for
the routes to match. For example, ``['hostname' => 'localhost:8080']`` matches only
requests to ``localhost:8080``.

Restrict by Multiple Hostnames
------------------------------

Expand All @@ -502,6 +511,11 @@ that does not have any subdomain present, this will not be matched:
Most domains should work fine but some edge case ones, especially with a period in the domain itself (not used
to separate suffixes or www) can potentially lead to false positives.

.. note::

The ``subdomain`` option is also compared against the ``HTTP_HOST`` value, so when the application runs on a
non-standard port, the port must be included as well (for example ``sub.example.com:8080``).

Offsetting the Matched Parameters
=================================

Expand Down