File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ framework:
44
44
trusted_hosts : ~
45
45
trusted_proxies : ~
46
46
session :
47
- # handler_id set to null will use default session handler from php.ini
48
- handler_id : ~
47
+ handler_id : session. handler.native_file
48
+ save_path : " %kernel.root_dir%/../var/sessions/%kernel.environment% "
49
49
fragments : ~
50
50
http_method_override : true
51
51
assets : ~
@@ -77,7 +77,9 @@ doctrine:
77
77
# them from the app/config/parameters.yml file. The reason is that config.yml
78
78
# stores options that change the application behavior and parameters.yml
79
79
# stores options that change from one server to another
80
- url : " %database_url%"
80
+ driver : " pdo_sqlite"
81
+ # temp workaround for https://github.com/doctrine/dbal/issues/1106: define DB path here
82
+ path : " %kernel.root_dir%/../var/data/blog.sqlite"
81
83
82
84
orm :
83
85
auto_generate_proxy_classes : " %kernel.debug%"
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ monolog:
21
21
handler : nested
22
22
nested :
23
23
type : stream
24
- path : " php://stderr "
24
+ path : " %kernel.logs_dir%/%kernel.environment%.log "
25
25
level : debug
26
26
console :
27
27
type : console
You can’t perform that action at this time.
0 commit comments