28 lines
664 B
JSON
28 lines
664 B
JSON
// Vendor config: DO NOT TOUCH!
|
|
//
|
|
// See sample.config.yaml to override.
|
|
{
|
|
"http": {
|
|
"listen": [
|
|
{
|
|
"port": 80
|
|
}
|
|
],
|
|
"mounts": {}
|
|
},
|
|
"datadir": "/var/lib/xo-server/data",
|
|
|
|
// Should users be created on first sign in?
|
|
//
|
|
// Necessary for external authentication providers.
|
|
"createUserOnFirstSignin": true,
|
|
|
|
// Whether API logs should contains the full request/response on
|
|
// errors.
|
|
//
|
|
// This is disabled by default for performance (lots of data) and
|
|
// security concerns (avoiding sensitive data in the logs) but can
|
|
// be turned for investigation by the administrator.
|
|
"verboseApiLogsOnErrors": false
|
|
}
|