Skip to content
Snippets Groups Projects
Commit 19af8b84 authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Merge branch 'master' of github.com:simplesamlphp/simplesamlphp

# By dialogik
# Via Jaime Pérez Crespo (1) and dialogik (1)
* 'master' of github.com:simplesamlphp/simplesamlphp:
  Add trusted.url.domains default value change to upgrade notes
  Set trusted.url.domains default to array()
parents afc1804d e9a71384
No related branches found
No related tags found
No related merge requests found
...@@ -834,6 +834,6 @@ $config = array( ...@@ -834,6 +834,6 @@ $config = array(
* Example: * Example:
* 'trusted.url.domains' => array('sp.example.com', 'app.example.com'), * 'trusted.url.domains' => array('sp.example.com', 'app.example.com'),
*/ */
'trusted.url.domains' => null, 'trusted.url.domains' => array(),
); );
...@@ -179,3 +179,5 @@ The following modules will no longer be shipped with the next version of SimpleS ...@@ -179,3 +179,5 @@ The following modules will no longer be shipped with the next version of SimpleS
* `openidProvider` * `openidProvider`
* `saml2debug` * `saml2debug`
* `themefeidernd` * `themefeidernd`
The default value for trusted.url.domains in the config template has been changed from NULL to an empty array(), this sets a higher grade of default security. Resetting to NULL will re-allow untrusted routing.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment