jsbin/config.default.json
Aron Carroll 52bdae30a0 Add cookie based session support
This uses signed cookies which is nice but we still should not store any
user data in the cookie.
2012-05-03 19:59:05 +01:00

27 lines
427 B
JSON

{
"env": "development",
"url": {
"host": "jsbin.dev",
"prefix": "/",
"ssl": false
},
"store": {
"adapter": "mysql",
"mysql": {
"host": "localhost",
"user": "root",
"password": "",
"database": "jsbin"
},
"sqlite": {
"location": "/tmp/jsbin.db"
}
},
"session": {
"secret": "d41d8cd98f00b204e9800998ecf8427e"
},
"analytics": {
"id": null
}
}