You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
629 B

  1. # see https://symfony.com/doc/current/reference/configuration/framework.html
  2. framework:
  3. secret: '%env(APP_SECRET)%'
  4. # Note that the session will be started ONLY if you read or write from it.
  5. session:
  6. gc_maxlifetime: 14400 # 4 Stunden – serverseitige Sliding-Session
  7. cookie_lifetime: 14400 # Cookie-Expiry beim ersten Setzen; Subscriber verlängert bei jedem Request
  8. cookie_secure: auto
  9. cookie_samesite: lax
  10. #esi: true
  11. #fragments: true
  12. when@test:
  13. framework:
  14. test: true
  15. session:
  16. storage_factory_id: session.storage.factory.mock_file