12345678910111213141516171819202122232425262728293031323334353637 |
- imports:
- - { resource: config.yml }
-
- # In production environment you should know that the parameters for URL generation
- # always pass the requirements. Otherwise it would break your link (or even site with
- # strict_requirements = true). So we can disable the requirements check completely for
- # enhanced performance with strict_requirements = null.
- framework:
- router:
- strict_requirements: null
-
- #doctrine:
- # orm:
- # metadata_cache_driver: apc
- # result_cache_driver: apc
- # query_cache_driver: apc
-
- monolog:
- handlers:
- mail:
- type: fingers_crossed
- action_level: critical
- handler: buffered
- buffered:
- type: buffer
- handler: swift
- swift:
- type: swift_mailer
- from_email: contact@muzi.ch
- to_email: sevajol.bastien@gmail.com
- subject: An Error Occurred (muzi.ch)!
- level: debug
-
- parameters:
- env: prod
- siteurl: http://muzi.ch
- siteurl_www: http://www.muzi.ch
|