25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

32 satır
901 B

  1. # see https://symfony.com/doc/current/reference/configuration/framework.html
  2. framework:
  3. secret: '%env(APP_SECRET)%'
  4. #csrf_protection: true
  5. http_method_override: false
  6. handle_all_throwables: true
  7. # Enables session support. Note that the session will ONLY be started if you read or write from it.
  8. # Remove or comment this section to explicitly disable session support.
  9. session:
  10. enabled: true
  11. handler_id: 'session.handler.native_file'
  12. cookie_secure: auto
  13. cookie_samesite: lax
  14. storage_factory_id: session.storage.factory.native
  15. # Timeout für nicht aktive Sitzungen (in Sekunden)
  16. gc_maxlifetime: 3600
  17. # Dauer, für die der Cookie gesetzt wird (in Sekunden)
  18. cookie_lifetime: 3600
  19. #esi: true
  20. #fragments: true
  21. php_errors:
  22. log: true
  23. when@test:
  24. framework:
  25. test: true
  26. session:
  27. storage_factory_id: session.storage.factory.mock_file