Skip to content
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
c849e54
Document Trusted Hosts regex format and validation
promptless[bot] Mar 31, 2026
88afe04
Sync suggestion branch with base branch
promptless[bot] Apr 1, 2026
1ada581
Sync suggestion branch with base branch
promptless[bot] Apr 1, 2026
ad230cd
Sync suggestion branch with base branch
promptless[bot] Apr 1, 2026
b19b757
Sync suggestion branch with base branch
promptless[bot] Apr 1, 2026
85b69c3
Sync suggestion branch with base branch
promptless[bot] Apr 2, 2026
40a3fb9
Stage base-branch merge conflict for automatic resolution
promptless[bot] Apr 2, 2026
a49dc46
Resolve base-branch merge conflicts
promptless[bot] Apr 2, 2026
32bd858
Sync suggestion branch with base branch
promptless[bot] Apr 2, 2026
cd5408a
Sync suggestion branch with base branch
promptless[bot] Apr 3, 2026
96133f7
Sync suggestion branch with base branch
promptless[bot] Apr 3, 2026
1ea5b6f
Sync suggestion branch with base branch
promptless[bot] Apr 4, 2026
72a78e9
Sync suggestion branch with base branch
promptless[bot] Apr 11, 2026
5fef9c8
Sync suggestion branch with base branch
promptless[bot] Apr 11, 2026
9cb60a3
Fix Trusted Hosts documentation to match actual validation behavior
promptless[bot] Apr 21, 2026
41318ac
Address review feedback: use active voice
promptless[bot] Apr 22, 2026
4f70659
Address reviewer feedback on Trusted Hosts documentation
promptless[bot] Apr 23, 2026
3643f28
Apply reviewer feedback: use active voice for Trusted hosts
promptless[bot] Apr 23, 2026
20acc1b
Apply reviewer feedback: use example.com consistently
promptless[bot] Apr 23, 2026
6e9ccb4
Apply reviewer feedback: change "For example" to "For instance"
promptless[bot] Apr 23, 2026
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
12 changes: 9 additions & 3 deletions docs/configuration/settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,17 @@ Cross-Origin Resource Sharing - CORS - allows data to pass between your website

* **Valid Domains** - A list of domains allowed to communicate with your Mautic instance. In the text box, list the exact URL of the top level domain you want to allow, one per line. For example: ``http://www.example.com`` tracks any activity on non-secure example.com pages, but ``https://www.example.com`` won't because this is only tracking on a secure ``https://`` website.

* **Trusted hosts** - To explicitly allow the hosts that can send requests to Mautic. You can use regular expression and separate multiple hosts with a comma. i.e ``.*\.?example.com$``. If left empty, Mautic will respond to all hosts.

* **Trusted hosts** - Explicitly allow hosts that can send requests to Mautic. Enter the domain name where you installed Mautic, such as ``mautic.example.com``. Separate multiple hosts with a comma. You can also use regular expressions for advanced matching, which Mautic encloses with ``/`` delimiters. For instance, ``.*\.?example.com$`` becomes ``/.*\.?example.com$/``. If left empty, Mautic responds to all hosts.

Mautic validates your input during the save process. Invalid domain names or regular expression patterns trigger an error message.

.. caution::

Incorrect settings can prevent access to your Mautic instance. Getting locked out requires manually editing the database or configuration file to fix the setting.

* **Trusted proxies** - To configure the IP addresses that Mautic should trust as proxies. This setting is mandatory when using Mautic behind an SSL terminating proxy. Separate multiple IP addresses by a comma. i.e ``127.0.0.1, 10.0.0.0/8, fc00::/7``

.. note::
.. note::

Comment thread
adiati98 marked this conversation as resolved.
In the Valid Domains field, don't include a slash at the end. For example, use ``https://www.example.com`` instead of ``https://www.example.com/``.

Expand Down
Loading