Skip to content
Snippets Groups Projects
Commit c5c832c4 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo Committed by GitHub
Browse files

Set a default session name for PHP sessions.

The default values are fine if no other applications use PHP sessions. However, when other apps are using PHP sessions, a conflict arises with the defaults, so let's try to make the defaults a bit more resilient.
parent bcbddcdf
No related branches found
No related tags found
No related merge requests found
...@@ -503,7 +503,7 @@ $config = array( ...@@ -503,7 +503,7 @@ $config = array(
/* /*
* Options to override the default settings for php sessions. * Options to override the default settings for php sessions.
*/ */
'session.phpsession.cookiename' => null, 'session.phpsession.cookiename' => 'SimpleSAML',
'session.phpsession.savepath' => null, 'session.phpsession.savepath' => null,
'session.phpsession.httponly' => true, 'session.phpsession.httponly' => true,
......
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