feature(config) rm rest

This commit is contained in:
coderaiser 2014-07-18 12:46:38 -04:00
parent 01b5fd0be0
commit 9acfeb2506
2 changed files with 3 additions and 5 deletions

View file

@ -212,18 +212,17 @@ All main configuration could be done via `json/config.json`.
"zip" : true, /* zip text before send / unzip before save */
"notifications" : false, /* show notifications when tab is not active*/
"localStorage" : true, /* cache directory data */
"minify" : true /* minification of js,css,html and img */
"minify" : true, /* minification of js,css,html and img */
"online" : true, /* load js files from cdn or local path */
"cache" : true, /* add cache-control */
"logs" : false, /* logs or console ouput */
"showKeysPanel" : true, /* show classic panel with buttons of keys */
"server" : true, /* server mode or testing mode */
"socket" : true /* enable web sockets */
"socket" : true, /* enable web sockets */
"port" : 8000, /* http port */
"sslPort" : 443, /* https port */
"ip" : null, /* ip or null(default) */
"ssl" : false /* should use https? */
"rest" : true /* enable rest interface */
}
```

View file

@ -18,6 +18,5 @@
"port": 8000,
"sslPort": 4430,
"ip": null,
"ssl": false,
"rest": true
"ssl": false
}