]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/config/config.yml
Store cache lifetime in config
[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: ~
2bc9cad7
JB
8 translator:
9 enabled: true
10 fallback: "%locale%"
11 secret: "%secret%"
93fd4692
NL
12 router:
13 resource: "%kernel.root_dir%/config/routing.yml"
14 strict_requirements: ~
2bc9cad7 15 form: ~
93fd4692 16 csrf_protection: ~
2bc9cad7
JB
17 validation:
18 enable_annotations: true
93fd4692
NL
19 templating:
20 engines: ['twig']
2bc9cad7
JB
21 default_locale: "%locale%"
22 trusted_hosts: ~
93fd4692
NL
23 trusted_proxies: ~
24 session:
25 # handler_id set to null will use default session handler from php.ini
2bc9cad7
JB
26 handler_id: session.handler.native_file
27 save_path: "%kernel.root_dir%/../var/sessions/%kernel.environment%"
28 fragments: ~
93fd4692 29 http_method_override: true
d8dbe76b 30 assets: ~
93fd4692 31
c89d35e8 32wallabag_core:
5068544e 33 version: 2.0.7
63e40f2d 34 paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb"
c89d35e8
NL
35 languages:
36 en: 'English'
37 fr: 'Français'
57cf6fd7 38 de: 'Deutsch'
f47101e0 39 tr: 'Türkçe'
e2b4f0e2 40 fa: 'فارسی'
d8f5b270 41 ro: 'Română'
ee40ccf2 42 pl: 'Polish'
449df236 43 da: 'Dansk'
e5f3b04c 44 es: 'Español'
187868d1 45 oc: 'Occitan'
8b09c6ed 46 it: 'Italiano'
bc789687
JB
47 items_on_page: 12
48 theme: material
49 language: en
50 rss_limit: 50
bca54859 51 reading_speed: 1
b3f4a11a 52 cache_lifetime: 10
77a7752a
JB
53
54wallabag_import:
55 allow_mimetypes: ['application/octet-stream', 'application/json', 'text/plain']
b1d05721 56 resource_dir: "%kernel.root_dir%/../web/uploads/import"
c89d35e8 57
93fd4692
NL
58# Twig Configuration
59twig:
2bc9cad7 60 debug: "%kernel.debug%"
93fd4692 61 strict_variables: "%kernel.debug%"
5c895a7f
JB
62 form_themes:
63 - "LexikFormFilterBundle:Form:form_div_layout.html.twig"
6682139e 64
93fd4692
NL
65# Doctrine Configuration
66doctrine:
67 dbal:
2bc9cad7 68 driver: "%database_driver%"
61b9fdd5
NL
69 host: "%database_host%"
70 port: "%database_port%"
71 dbname: "%database_name%"
72 user: "%database_user%"
73 password: "%database_password%"
2bc9cad7
JB
74 charset: UTF8
75 path: "%database_path%"
69c21157 76 server_version: 5.6
93fd4692
NL
77
78 orm:
79 auto_generate_proxy_classes: "%kernel.debug%"
164bd801
J
80 entity_managers:
81 default:
164bd801 82 auto_mapping: true
93fd4692 83
3c65dfb7
NL
84stof_doctrine_extensions:
85 default_locale: "%locale%"
86 translation_fallback: true
87 orm:
88 default:
89 tree: true
90 sluggable: true
91
292c1324
NL
92doctrine_migrations:
93 dir_name: "%kernel.root_dir%/DoctrineMigrations"
94 namespace: Application\Migrations
95 table_name: migration_versions
96 name: Application Migrations
97
93fd4692
NL
98# Swiftmailer Configuration
99swiftmailer:
100 transport: "%mailer_transport%"
2bc9cad7
JB
101 host: "%mailer_host%"
102 username: "%mailer_user%"
103 password: "%mailer_password%"
104 spool:
105 type: memory
e4788de5
NL
106
107fos_rest:
108 param_fetcher_listener: true
109 body_listener: true
110 format_listener: true
111 view:
112 view_response_listener: 'force'
113 formats:
114 xml: true
115 json : true
116 templating_formats:
117 html: true
118 force_redirects:
119 html: true
120 failed_validation: HTTP_BAD_REQUEST
121 default_engine: twig
122 routing_loader:
a65f5d55 123 default_format: json
e4788de5 124
cd1298d6
NL
125nelmio_api_doc:
126 sandbox:
127 enabled: false
3c65dfb7 128 name: wallabag API documentation
fca3c757
NL
129
130nelmio_cors:
131 defaults:
132 allow_credentials: false
133 allow_origin: []
134 allow_headers: []
135 allow_methods: []
136 expose_headers: []
137 max_age: 0
138 hosts: []
139 #origin_regex: false
140 paths:
141 '^/api/':
142 allow_origin: ['*']
143 allow_headers: ['X-Custom-Auth']
41c9eecf 144 allow_methods: ['POST', 'PUT', 'PATCH','GET', 'DELETE']
fca3c757 145 max_age: 3600
848c2e1b 146 '^/oauth/':
fca3c757
NL
147 allow_origin: ['*']
148 allow_headers: ['X-Custom-Auth']
149 allow_methods: ['POST', 'PUT', 'GET', 'DELETE']
150 max_age: 3600
151 '^/':
152 #origin_regex: true
153 allow_origin: ['^http://localhost:[0-9]+']
154 allow_headers: ['X-Custom-Auth']
155 allow_methods: ['POST', 'PUT', 'GET', 'DELETE']
156 max_age: 3600
157 hosts: ['^api\.']
32da2a70
J
158
159liip_theme:
160 load_controllers: false
161 themes:
162 - baggy
9948d899 163 - material
32da2a70
J
164 autodetect_theme: wallabag_core.helper.detect_active_theme
165
166 path_patterns:
32da2a70 167 bundle_resource:
23634d5d 168 - "%%bundle_path%%/Resources/views/themes/%%current_theme%%/%%template%%"
a1691859
NL
169
170fos_user:
171 db_driver: orm
fdc90ceb 172 firewall_name: secured_area
1210dae1 173 user_class: Wallabag\UserBundle\Entity\User
fcb1fba5 174 registration:
fcb1fba5 175 confirmation:
23634d5d 176 enabled: "%fosuser_confirmation%"
a40dd989 177 from_email:
23634d5d 178 address: "%from_email%"
a40dd989 179 sender_name: wallabag
fcb1fba5
NL
180fos_oauth_server:
181 db_driver: orm
182 client_class: Wallabag\ApiBundle\Entity\Client
183 access_token_class: Wallabag\ApiBundle\Entity\AccessToken
184 refresh_token_class: Wallabag\ApiBundle\Entity\RefreshToken
185 auth_code_class: Wallabag\ApiBundle\Entity\AuthCode
186 service:
187 user_provider: fos_user.user_manager
2db616b5
NL
188
189scheb_two_factor:
2db616b5
NL
190 trusted_computer:
191 enabled: true
192 cookie_name: wllbg_trusted_computer
0d6a7929 193 cookie_lifetime: 2592000
2db616b5
NL
194
195 email:
23634d5d
JB
196 enabled: "%twofactor_auth%"
197 sender_email: "%twofactor_sender%"
2db616b5
NL
198 digits: 6
199 template: WallabagUserBundle:Authentication:form.html.twig
23ff8d36 200 mailer: wallabag_user.auth_code_mailer
625acf33
KG
201
202kphoen_rulerz:
203 executors:
204 doctrine: true
fbbda941
NL
205
206lexik_maintenance:
207 authorized:
208 ips: ['127.0.0.1']
209 driver:
210 ttl: 3600
211 class: 'Lexik\Bundle\MaintenanceBundle\Drivers\DatabaseDriver'
212 response:
213 code: 503
214 status: "wallabag Service Temporarily Unavailable"