]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/config/config.yml
symfony is there
[github/wallabag/wallabag.git] / app / config / config.yml
1 imports:
2 - { resource: parameters.yml }
3 - { resource: security.yml }
4 - { resource: services.yml }
5
6 framework:
7 #esi: ~
8 #translator: { fallback: "%locale%" }
9 secret: "%secret%"
10 router:
11 resource: "%kernel.root_dir%/config/routing.yml"
12 strict_requirements: ~
13 form: ~
14 csrf_protection: ~
15 validation: { enable_annotations: true }
16 templating:
17 engines: ['twig']
18 #assets_version: SomeVersionScheme
19 default_locale: "%locale%"
20 trusted_hosts: ~
21 trusted_proxies: ~
22 session:
23 # handler_id set to null will use default session handler from php.ini
24 handler_id: ~
25 fragments: ~
26 http_method_override: true
27
28 # Twig Configuration
29 twig:
30 debug: "%kernel.debug%"
31 strict_variables: "%kernel.debug%"
32
33 # Assetic Configuration
34 assetic:
35 debug: "%kernel.debug%"
36 use_controller: false
37 bundles: [ ]
38 #java: /usr/bin/java
39 filters:
40 cssrewrite: ~
41 #closure:
42 # jar: "%kernel.root_dir%/Resources/java/compiler.jar"
43 #yui_css:
44 # jar: "%kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar"
45
46 # Doctrine Configuration
47 doctrine:
48 dbal:
49 driver: "%database_driver%"
50 host: "%database_host%"
51 port: "%database_port%"
52 dbname: "%database_name%"
53 user: "%database_user%"
54 password: "%database_password%"
55 charset: UTF8
56 # if using pdo_sqlite as your database driver:
57 # 1. add the path in parameters.yml
58 # e.g. database_path: "%kernel.root_dir%/data/data.db3"
59 # 2. Uncomment database_path in parameters.yml.dist
60 # 3. Uncomment next line:
61 # path: "%database_path%"
62
63 orm:
64 auto_generate_proxy_classes: "%kernel.debug%"
65 auto_mapping: true
66
67 # Swiftmailer Configuration
68 swiftmailer:
69 transport: "%mailer_transport%"
70 host: "%mailer_host%"
71 username: "%mailer_user%"
72 password: "%mailer_password%"
73 spool: { type: memory }