File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -463,12 +463,14 @@ You are finished! You can now define parts of your app as under WSSE protection.
463
463
firewalls :
464
464
wsse_secured :
465
465
pattern : /api/.*
466
+ stateless : true
466
467
wsse : true
467
468
468
469
.. code-block :: xml
469
470
470
471
<config >
471
472
<firewall name =" wsse_secured" pattern =" /api/.*" >
473
+ <stateless />
472
474
<wsse />
473
475
</firewall >
474
476
</config >
@@ -479,6 +481,7 @@ You are finished! You can now define parts of your app as under WSSE protection.
479
481
'firewalls' => array(
480
482
'wsse_secured' => array(
481
483
'pattern' => '/api/.*',
484
+ 'stateless' => true,
482
485
'wsse' => true,
483
486
),
484
487
),
@@ -563,6 +566,7 @@ set to any desirable value per firewall.
563
566
firewalls :
564
567
wsse_secured :
565
568
pattern : /api/.*
569
+ stateless : true
566
570
wsse : { lifetime: 30 }
567
571
568
572
.. code-block :: xml
@@ -571,6 +575,7 @@ set to any desirable value per firewall.
571
575
<firewall name =" wsse_secured"
572
576
pattern =" /api/.*"
573
577
>
578
+ <stateless />
574
579
<wsse lifetime =" 30" />
575
580
</firewall >
576
581
</config >
@@ -581,6 +586,7 @@ set to any desirable value per firewall.
581
586
'firewalls' => array(
582
587
'wsse_secured' => array(
583
588
'pattern' => '/api/.*',
589
+ 'stateless' => true,
584
590
'wsse' => array(
585
591
'lifetime' => 30,
586
592
),
You can’t perform that action at this time.
0 commit comments