]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/config/config.yml
Quoted entity to avoid reserved keyword
[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 wallabag_core:
29 languages:
30 en: 'English'
31 fr: 'Français'
32 de: 'Deutsch'
33
34 # Twig Configuration
35 twig:
36 debug: "%kernel.debug%"
37 strict_variables: "%kernel.debug%"
38 globals:
39 share_twitter: %share_twitter%
40 share_mail: %share_mail%
41 share_shaarli: %share_shaarli%
42 shaarli_url: %shaarli_url%
43 share_diaspora: %share_diaspora%
44 diaspora_url: %diaspora_url%
45 flattr: %flattr%
46 flattrable: 1
47 flattred: 2
48 carrot: %carrot%
49 show_printlink: %show_printlink%
50 export_epub: %export_epub%
51 export_mobi: %export_mobi%
52 export_pdf: %export_pdf%
53 version: %app.version%
54 twofactor_auth: %twofactor_auth%
55 warning_message: %warning_message%
56 paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb"
57 flattr_url: "https://flattr.com/thing/1265480"
58 form:
59 resources:
60 - LexikFormFilterBundle:Form:form_div_layout.html.twig
61
62 # Assetic Configuration
63 assetic:
64 debug: "%kernel.debug%"
65 use_controller: false
66 bundles: [ ]
67 #java: /usr/bin/java
68 filters:
69 cssrewrite: ~
70 #closure:
71 # jar: "%kernel.root_dir%/Resources/java/compiler.jar"
72 #yui_css:
73 # jar: "%kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar"
74
75 # Doctrine Configuration
76 doctrine:
77 dbal:
78 driver: "%database_driver%"
79 host: "%database_host%"
80 port: "%database_port%"
81 dbname: "%database_name%"
82 user: "%database_user%"
83 password: "%database_password%"
84 charset: UTF8
85 path: "%database_path%"
86
87 orm:
88 auto_generate_proxy_classes: "%kernel.debug%"
89 entity_managers:
90 default:
91 auto_mapping: true
92
93 # Swiftmailer Configuration
94 swiftmailer:
95 transport: "%mailer_transport%"
96 host: "%mailer_host%"
97 username: "%mailer_user%"
98 password: "%mailer_password%"
99 spool: { type: memory }
100
101 fos_rest:
102 param_fetcher_listener: true
103 body_listener: true
104 format_listener: true
105 view:
106 view_response_listener: 'force'
107 formats:
108 xml: true
109 json : true
110 templating_formats:
111 html: true
112 force_redirects:
113 html: true
114 failed_validation: HTTP_BAD_REQUEST
115 default_engine: twig
116 routing_loader:
117 default_format: json
118
119 nelmio_api_doc:
120 sandbox:
121 enabled: false
122
123 nelmio_cors:
124 defaults:
125 allow_credentials: false
126 allow_origin: []
127 allow_headers: []
128 allow_methods: []
129 expose_headers: []
130 max_age: 0
131 hosts: []
132 #origin_regex: false
133 paths:
134 '^/api/':
135 allow_origin: ['*']
136 allow_headers: ['X-Custom-Auth']
137 allow_methods: ['POST', 'PUT', 'GET', 'DELETE']
138 max_age: 3600
139 '^/':
140 #origin_regex: true
141 allow_origin: ['^http://localhost:[0-9]+']
142 allow_headers: ['X-Custom-Auth']
143 allow_methods: ['POST', 'PUT', 'GET', 'DELETE']
144 max_age: 3600
145 hosts: ['^api\.']
146
147 liip_theme:
148 load_controllers: false
149 themes:
150 - baggy
151 - material
152 autodetect_theme: wallabag_core.helper.detect_active_theme
153
154 path_patterns:
155 # app_resource:
156 # - %%app_path%%/views/themes/%%current_theme%%/%%template%%
157 # - %%app_path%%/views/%%template%%
158 bundle_resource:
159 - %%bundle_path%%/Resources/views/themes/%%current_theme%%/%%template%%
160 # bundle_resource_dir:
161 # - %%dir%%/views/themes/%%current_theme%%/%%bundle_name%%/%%template%%
162 # - %%dir%%/views/%%bundle_name%%/%%override_path%%
163
164 fos_user:
165 db_driver: orm
166 firewall_name: main
167 user_class: Wallabag\UserBundle\Entity\User
168 registration:
169 confirmation:
170 enabled: true
171
172 fos_oauth_server:
173 db_driver: orm
174 client_class: Wallabag\ApiBundle\Entity\Client
175 access_token_class: Wallabag\ApiBundle\Entity\AccessToken
176 refresh_token_class: Wallabag\ApiBundle\Entity\RefreshToken
177 auth_code_class: Wallabag\ApiBundle\Entity\AuthCode
178 service:
179 user_provider: fos_user.user_manager
180
181 scheb_two_factor:
182 trusted_computer:
183 enabled: true
184 cookie_name: wllbg_trusted_computer
185 cookie_lifetime: 2592000
186
187 email:
188 enabled: %twofactor_auth%
189 sender_email: %twofactor_sender%
190 digits: 6
191 template: WallabagUserBundle:Authentication:form.html.twig