config_prod.yml 842 B

1234567891011121314151617181920212223242526272829
  1. imports:
  2. - { resource: config.yml }
  3. # In production environment you should know that the parameters for URL generation
  4. # always pass the requirements. Otherwise it would break your link (or even site with
  5. # strict_requirements = true). So we can disable the requirements check completely for
  6. # enhanced performance with strict_requirements = null.
  7. framework:
  8. router:
  9. strict_requirements: null
  10. #validation:
  11. # cache: apc
  12. doctrine:
  13. orm:
  14. metadata_cache_driver: apc
  15. #result_cache_driver: apc
  16. query_cache_driver: apc
  17. monolog:
  18. handlers:
  19. main:
  20. type: fingers_crossed
  21. action_level: error
  22. handler: nested
  23. nested:
  24. type: stream
  25. path: %kernel.logs_dir%/%kernel.environment%.log
  26. level: debug