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

[stable10] Text improvements in config.sample.php #31114

Merged
merged 1 commit into from
Apr 13, 2018
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
8 changes: 7 additions & 1 deletion config/config.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@
/**
* Your list of trusted domains that users can log into. Specifying trusted
* domains prevents host header poisoning. Do not remove this, as it performs
* necessary security checks.
* necessary security checks. Please consider that for backend processes like
* background jobs or occ commands, the url parameter in key ``overwrite.cli.url``
* is used. For more details please see that key.
*/
'trusted_domains' =>
array (
Expand Down Expand Up @@ -413,6 +415,10 @@
* are generated within ownCloud using any kind of command line tools (cron or
* occ). The value should contain the full base URL:
* ``https://www.example.com/owncloud``
* As an example, alerts shown in the browser to upgrade an app are triggered by
* a cron background process and therefore uses the url of this key, even if the user
* has logged on via a different domain defined in key ``trusted_domains``. When the
* user clicks an alert like this, he will be redirected to that URL and must logon again.
*/
'overwrite.cli.url' => '',

Expand Down