You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// URL Location of the IdP where SLO Request will be sent.
337
337
'url' => '',
338
338
// SAML protocol binding to be used when returning the <Response>
@@ -386,15 +386,15 @@ that you can copy and rename it as `advanced_settings.php`
386
386
```php
387
387
<?php
388
388
389
-
$advancedSettings = array(
389
+
$advancedSettings = array(
390
390
391
391
// Compression settings
392
-
'compress' => array(
392
+
'compress' => array(
393
393
'requests' => true,
394
394
'responses' => true
395
395
),
396
396
// Security settings
397
-
'security' => array(
397
+
'security' => array(
398
398
399
399
/** signatures and encryptions offered */
400
400
@@ -415,7 +415,7 @@ $advancedSettings = array (
415
415
'logoutResponseSigned' => false,
416
416
417
417
/* Sign the Metadata
418
-
False || True (use sp certs) || array(
418
+
False || True (use sp certs) || array(
419
419
keyFileName => 'metadata.key',
420
420
certFileName => 'metadata.crt'
421
421
)
@@ -447,7 +447,7 @@ $advancedSettings = array (
447
447
// Authentication context.
448
448
// Set to false and no AuthContext will be sent in the AuthNRequest.
449
449
// Set true or don't present this parameter and you will get an AuthContext 'exact' 'urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport'.
450
-
// Set an array with the possible auth context values: array('urn:oasis:names:tc:SAML:2.0:ac:classes:Password', 'urn:oasis:names:tc:SAML:2.0:ac:classes:X509').
450
+
// Set an array with the possible auth context values: array('urn:oasis:names:tc:SAML:2.0:ac:classes:Password', 'urn:oasis:names:tc:SAML:2.0:ac:classes:X509').
451
451
'requestedAuthnContext' => true,
452
452
453
453
// Indicates if the SP will validate all received xmls.
@@ -482,20 +482,20 @@ $advancedSettings = array (
482
482
483
483
// Contact information template, it is recommended to supply a
484
484
// technical and support contacts.
485
-
'contactPerson' => array(
486
-
'technical' => array(
485
+
'contactPerson' => array(
486
+
'technical' => array(
487
487
'givenName' => '',
488
488
'emailAddress' => ''
489
489
),
490
-
'support' => array(
490
+
'support' => array(
491
491
'givenName' => '',
492
492
'emailAddress' => ''
493
493
),
494
494
),
495
495
496
496
// Organization information template, the info in en_US lang is
Copy file name to clipboardExpand all lines: advanced_settings_example.php
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
<?php
2
2
3
-
$advancedSettings = array(
3
+
$advancedSettings = array(
4
4
5
5
// Compression settings
6
6
// Handle if the getRequest/getResponse methods will return the Request/Response deflated.
7
7
// But if we provide a $deflate boolean parameter to the getRequest or getResponse
8
8
// method it will have priority over the compression settings.
9
-
'compress' => array(
9
+
'compress' => array(
10
10
'requests' => true,
11
11
'responses' => true
12
12
),
13
13
14
14
// Security settings
15
-
'security' => array(
15
+
'security' => array(
16
16
17
17
/** signatures and encryptions offered */
18
18
@@ -33,7 +33,7 @@
33
33
'logoutResponseSigned' => false,
34
34
35
35
/* Sign the Metadata
36
-
False || True (use sp certs) || array(
36
+
False || True (use sp certs) || array(
37
37
keyFileName => 'metadata.key',
38
38
certFileName => 'metadata.crt'
39
39
)
@@ -66,7 +66,7 @@
66
66
// Authentication context.
67
67
// Set to false and no AuthContext will be sent in the AuthNRequest,
68
68
// Set true or don't present this parameter and you will get an AuthContext 'exact' 'urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport'
69
-
// Set an array with the possible auth context values: array('urn:oasis:names:tc:SAML:2.0:ac:classes:Password', 'urn:oasis:names:tc:SAML:2.0:ac:classes:X509'),
69
+
// Set an array with the possible auth context values: array('urn:oasis:names:tc:SAML:2.0:ac:classes:Password', 'urn:oasis:names:tc:SAML:2.0:ac:classes:X509'),
70
70
'requestedAuthnContext' => false,
71
71
72
72
// Allows the authn comparison parameter to be set, defaults to 'exact' if
@@ -104,19 +104,19 @@
104
104
),
105
105
106
106
// Contact information template, it is recommended to suply a technical and support contacts
107
-
'contactPerson' => array(
108
-
'technical' => array(
107
+
'contactPerson' => array(
108
+
'technical' => array(
109
109
'givenName' => '',
110
110
'emailAddress' => ''
111
111
),
112
-
'support' => array(
112
+
'support' => array(
113
113
'givenName' => '',
114
114
'emailAddress' => ''
115
115
),
116
116
),
117
117
118
118
// Organization information template, the info in en_US lang is recomended, add more if required
0 commit comments