diff options
Diffstat (limited to 'app/config')
-rw-r--r-- | app/config/config.yml | 3 | ||||
-rw-r--r-- | app/config/config_dev.yml | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/app/config/config.yml b/app/config/config.yml index 5fac3192..133fc12f 100644 --- a/app/config/config.yml +++ b/app/config/config.yml | |||
@@ -21,7 +21,8 @@ framework: | |||
21 | trusted_proxies: ~ | 21 | trusted_proxies: ~ |
22 | session: | 22 | session: |
23 | # handler_id set to null will use default session handler from php.ini | 23 | # handler_id set to null will use default session handler from php.ini |
24 | handler_id: ~ | 24 | handler_id: session.handler.native_file |
25 | save_path: "%kernel.root_dir%/../var/sessions/%kernel.environment%" | ||
25 | fragments: ~ | 26 | fragments: ~ |
26 | http_method_override: true | 27 | http_method_override: true |
27 | 28 | ||
diff --git a/app/config/config_dev.yml b/app/config/config_dev.yml index 116dd0d5..6b077fdb 100644 --- a/app/config/config_dev.yml +++ b/app/config/config_dev.yml | |||
@@ -17,13 +17,14 @@ monolog: | |||
17 | type: stream | 17 | type: stream |
18 | path: "%kernel.logs_dir%/%kernel.environment%.log" | 18 | path: "%kernel.logs_dir%/%kernel.environment%.log" |
19 | level: debug | 19 | level: debug |
20 | channels: [!event] | ||
20 | console: | 21 | console: |
21 | type: console | 22 | type: console |
22 | bubble: false | 23 | bubble: false |
23 | verbosity_levels: | 24 | verbosity_levels: |
24 | VERBOSITY_VERBOSE: INFO | 25 | VERBOSITY_VERBOSE: INFO |
25 | VERBOSITY_VERY_VERBOSE: DEBUG | 26 | VERBOSITY_VERY_VERBOSE: DEBUG |
26 | channels: ["!doctrine"] | 27 | channels: [!event, !doctrine] |
27 | console_very_verbose: | 28 | console_very_verbose: |
28 | type: console | 29 | type: console |
29 | bubble: false | 30 | bubble: false |
@@ -31,7 +32,7 @@ monolog: | |||
31 | VERBOSITY_VERBOSE: NOTICE | 32 | VERBOSITY_VERBOSE: NOTICE |
32 | VERBOSITY_VERY_VERBOSE: NOTICE | 33 | VERBOSITY_VERY_VERBOSE: NOTICE |
33 | VERBOSITY_DEBUG: DEBUG | 34 | VERBOSITY_DEBUG: DEBUG |
34 | channels: ["doctrine"] | 35 | channels: [doctrine] |
35 | 36 | ||
36 | assetic: | 37 | assetic: |
37 | use_controller: true | 38 | use_controller: true |