mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
4687812f39
* Sessions in MySQL * Reclaiming some names * session renewal without new cookies on every request * comments and docstrings * light organization in vc generation * go vet * endpoints for session management * Merging @zwass' commit with mine * Updating salt generation to use crypt/rand * use getRandomText for session keys * VC no longer needs a DB or to return an error * getRandomText docstring * Only use session via the SessionBackend API * Set session backend with the request, similar to db
22 lines
412 B
JSON
22 lines
412 B
JSON
{
|
|
"mysql": {
|
|
"address": "mysql:3306",
|
|
"username": "kolide",
|
|
"password": "kolide",
|
|
"database": "kolide"
|
|
},
|
|
"server": {
|
|
"address": ":8080",
|
|
"cert": "./tools/kolide.crt",
|
|
"key": "./tools/kolide.key"
|
|
},
|
|
"app": {
|
|
"bcrypt_cost": 12,
|
|
"salt_key_size": 12,
|
|
"jwt_key": "very secure",
|
|
"session_key_size": 64
|
|
},
|
|
"osquery": {
|
|
"enroll_secret": "super secure"
|
|
}
|
|
} |