Licitator 1.0
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.

22 lines
716 B

5 years ago
  1. framework:
  2. secret: '%env(APP_SECRET)%'
  3. #csrf_protection: true
  4. #http_method_override: true
  5. # Enables session support. Note that the session will ONLY be started if you read or write from it.
  6. # Remove or comment this section to explicitly disable session support.
  7. session:
  8. handler_id: session.handler.native_file
  9. save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%'
  10. # 2 Days lifetime (172800 seconds)
  11. cookie_lifetime: 172800
  12. cookie_secure: auto
  13. cookie_samesite: lax
  14. #esi: true
  15. #fragments: true
  16. php_errors:
  17. log: true
  18. translator: { fallbacks: ['%locale%'] }
  19. templating:
  20. engines: ['twig', 'php']