-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathconfig.yml
More file actions
132 lines (114 loc) · 3.41 KB
/
Copy pathconfig.yml
File metadata and controls
132 lines (114 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
imports:
- { resource: parameters.yml }
- { resource: security.yml }
- { resource: google.yml }
- { resource: @CobaseAppBundle/Resources/config/config.yml }
framework:
#esi: ~
translator: { fallback: %locale% }
secret: %secret%
router: { resource: "%kernel.root_dir%/config/routing.yml" }
form: true
csrf_protection: true
validation: { enable_annotations: true }
templating: { engines: ['twig'] } #assets_version: SomeVersionScheme
session: true
# Twig Configuration
twig:
debug: %kernel.debug%
strict_variables: %kernel.debug%
globals:
site_title: %site_title%
allow_registration: %allow_registration%
enable_google_analytics: %enable_google_analytics%
# Assetic Configuration
assetic:
debug: %kernel.debug%
use_controller: false
filters:
cssrewrite: ~
# closure:
# jar: %kernel.root_dir%/java/compiler.jar
yui_js:
jar: %kernel.root_dir%/Resources/java/yuicompressor-2.4.6.jar
yui_css:
jar: %kernel.root_dir%/Resources/java/yuicompressor-2.4.6.jar
fos_js_routing:
routes_to_expose: [".*"]
# Doctrine Configuration
doctrine:
dbal:
driver: %database_driver%
host: %database_host%
port: %database_port%
dbname: %database_name%
user: %database_user%
password: %database_password%
charset: UTF8
orm:
filters:
softdeleteable:
class: Gedmo\SoftDeleteable\Filter\SoftDeleteableFilter
enabled: true
auto_generate_proxy_classes: %kernel.debug%
auto_mapping: true
# Swiftmailer Configuration
swiftmailer:
transport: %mailer_transport%
host: %mailer_host%
username: %mailer_user%
password: %mailer_password%
jms_security_extra:
secure_all_services: false
fos_user:
db_driver: orm # other valid values are 'mongodb', 'couchdb' and 'propel'
firewall_name: main
user_class: Cobase\UserBundle\Entity\User
profile:
form:
type: cobase_user_profile
registration:
form:
type: cobase_user_registration
confirmation:
enabled: false
# Gravatar Configuration
ornicar_gravatar:
rating: g
size: 105
default: mm
# Captcha
ewz_recaptcha:
public_key: 6LcpWN4SAAAAAOmSwDeV365jlf-OAf3hJ2IvWLoq
private_key: 6LcpWN4SAAAAANy1nu2Awuj1kEVLmbBbx1A6pItI
secure: false
locale_key: kernel.default_locale
# Url converter
liip_url_auto_converter:
linkclass:
target: _blank
debugmode: false
eko_feed:
feeds:
post:
title: 'Posts'
description: 'Latest posts'
link: 'cobase.featurice.com'
encoding: 'utf-8'
fos_oauth_server:
db_driver: orm # Driver availables: orm, mongodb, or propel
client_class: Cobase\ApiBundle\Entity\Client
access_token_class: Cobase\ApiBundle\Entity\AccessToken
refresh_token_class: Cobase\ApiBundle\Entity\RefreshToken
auth_code_class: Cobase\ApiBundle\Entity\AuthCode
service:
user_provider: fos_user.user_manager
sensio_framework_extra:
view:
annotations: false
fos_rest:
param_fetcher_listener: true
body_listener: true
format_listener: true
view:
view_response_listener: 'force'