freeCodeCamp/server/config.json

31 lines
517 B
JSON
Raw Normal View History

2015-06-03 00:27:02 +00:00
{
"restApiRoot": "/api",
2015-06-15 22:24:26 +00:00
"host": "127.0.0.1",
2015-06-03 00:27:02 +00:00
"port": 3000,
2015-06-12 20:14:07 +00:00
"legacyExplorer": false,
2015-06-03 00:27:02 +00:00
"remoting": {
"context": {
"enableHttpContext": false
},
"rest": {
"normalizeHttpPath": false,
"xml": false
},
"json": {
"strict": false,
"limit": "100kb"
},
"urlencoded": {
"extended": true,
"limit": "100kb"
},
"cors": {
"origin": true,
"credentials": true
},
"errorHandler": {
"disableStackTrace": false
}
}
}