]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/config/config.yml
Merge pull request #1537 from bdunogier/update_lock
[github/wallabag/wallabag.git] / app / config / config.yml
CommitLineData
93fd4692
NL
1imports:
2 - { resource: parameters.yml }
3 - { resource: security.yml }
4 - { resource: services.yml }
5
6framework:
7 #esi: ~
78cedc22 8 translator: { fallback: "%locale%" }
93fd4692
NL
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
c89d35e8
NL
28wallabag_core:
29 languages:
30 en: 'English'
31 fr: 'Français'
57cf6fd7 32 de: 'Deutsch'
c89d35e8 33
93fd4692
NL
34# Twig Configuration
35twig:
36 debug: "%kernel.debug%"
37 strict_variables: "%kernel.debug%"
bd9f0815
NL
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%
b84a8055 53 version: %app.version%
18cf594f 54 twofactor_auth: %twofactor_auth%
fdab81e9 55 warning_message: %warning_message%
b84a8055
NL
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"
26864574
NL
58 form:
59 resources:
60 - LexikFormFilterBundle:Form:form_div_layout.html.twig
6682139e 61
93fd4692
NL
62# Assetic Configuration
63assetic:
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
76doctrine:
77 dbal:
78 driver: "%database_driver%"
61b9fdd5
NL
79 host: "%database_host%"
80 port: "%database_port%"
81 dbname: "%database_name%"
82 user: "%database_user%"
83 password: "%database_password%"
93fd4692 84 charset: UTF8
9d50517c 85 path: "%database_path%"
93fd4692
NL
86
87 orm:
88 auto_generate_proxy_classes: "%kernel.debug%"
164bd801
J
89 entity_managers:
90 default:
164bd801 91 auto_mapping: true
93fd4692
NL
92
93# Swiftmailer Configuration
94swiftmailer:
95 transport: "%mailer_transport%"
96 host: "%mailer_host%"
97 username: "%mailer_user%"
98 password: "%mailer_password%"
99 spool: { type: memory }
e4788de5
NL
100
101fos_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:
a65f5d55 117 default_format: json
e4788de5 118
cd1298d6
NL
119nelmio_api_doc:
120 sandbox:
121 enabled: false
fca3c757
NL
122
123nelmio_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\.']
32da2a70
J
146
147liip_theme:
148 load_controllers: false
149 themes:
150 - baggy
9948d899 151 - material
32da2a70
J
152 autodetect_theme: wallabag_core.helper.detect_active_theme
153
154 path_patterns:
3e30422c
J
155 # app_resource:
156 # - %%app_path%%/views/themes/%%current_theme%%/%%template%%
157 # - %%app_path%%/views/%%template%%
32da2a70
J
158 bundle_resource:
159 - %%bundle_path%%/Resources/views/themes/%%current_theme%%/%%template%%
3e30422c
J
160 # bundle_resource_dir:
161 # - %%dir%%/views/themes/%%current_theme%%/%%bundle_name%%/%%template%%
162 # - %%dir%%/views/%%bundle_name%%/%%override_path%%
a1691859
NL
163
164fos_user:
165 db_driver: orm
166 firewall_name: main
1210dae1 167 user_class: Wallabag\UserBundle\Entity\User
fcb1fba5 168 registration:
fcb1fba5
NL
169 confirmation:
170 enabled: true
171
172fos_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
2db616b5
NL
180
181scheb_two_factor:
2db616b5
NL
182 trusted_computer:
183 enabled: true
184 cookie_name: wllbg_trusted_computer
0d6a7929 185 cookie_lifetime: 2592000
2db616b5
NL
186
187 email:
18cf594f
NL
188 enabled: %twofactor_auth%
189 sender_email: %twofactor_sender%
2db616b5
NL
190 digits: 6
191 template: WallabagUserBundle:Authentication:form.html.twig
625acf33
KG
192
193kphoen_rulerz:
194 executors:
195 doctrine: true