Skip to content
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

cookiedomain is tied to one TYPO3 instance #4811

Merged
merged 1 commit into from
Oct 10, 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
4 changes: 3 additions & 1 deletion Documentation/Configuration/Typo3ConfVars/SYS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ configurations.
value to ".example.org" (replace example.org with your domain!), login
sessions will be shared across subdomains. Alternatively, if you have more
than one domain with sub-domains, you can set the value to a regular
expression to match against the domain of the HTTP request.
expression to match against the domain of the HTTP request. This however requires
that all sub-domains are within the same TYPO3 instance, because a session can be tied
to only one database.

The result of the match is used as the domain for the cookie. for example :
php:`/\.(example1|example2)\.com$/` or :php:`/\.(example1\.com)|(example2\.net)$/`.
Expand Down
Loading