Very minor fixes

This commit is contained in:
Bryan Ashby 2017-02-16 20:53:14 -07:00
parent 8a475845a7
commit 6285193545
3 changed files with 5 additions and 5 deletions

View File

@ -228,7 +228,7 @@ function getDefaultConfig() {
http : {
enabled : false,
port : 8080,
port : 8080,
},
https : {
enabled : false,

View File

@ -62,7 +62,7 @@ exports.getModule = class WebServerModule extends ServerModule {
this.addRoute({
method : 'GET',
path : '/static/.*$',
handler : this.routeStaticFile,
handler : this.routeStaticFile.bind(this),
});
}
}

View File

@ -80,10 +80,10 @@ Temporary web HTTP(S) URLs can be used to download files using the built in web
See [Web Server](web_server.md) for more information.
## oputil
The `oputil.js` +op utilty `file-base` command has tools for managing file bases. For example, to import existing files found within **all** storage locations tied to an area:
The `oputil.js` +op utilty `fb` command has tools for managing file bases. For example, to import existing files found within **all** storage locations tied to an area and set tags `tag1` and `tag2` to each import:
```bash
oputil.js file-base --scan some_area
oputil.js fb scan some_area --tags tag1,tag2
```
See `oputil.js file-base --help` for additional information.
See `oputil.js fb --help` for additional information.