mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-30 22:46:17 +02:00
Very minor fixes
This commit is contained in:
parent
8a475845a7
commit
6285193545
3 changed files with 5 additions and 5 deletions
|
@ -228,7 +228,7 @@ function getDefaultConfig() {
|
||||||
|
|
||||||
http : {
|
http : {
|
||||||
enabled : false,
|
enabled : false,
|
||||||
port : 8080,
|
port : 8080,
|
||||||
},
|
},
|
||||||
https : {
|
https : {
|
||||||
enabled : false,
|
enabled : false,
|
||||||
|
|
|
@ -62,7 +62,7 @@ exports.getModule = class WebServerModule extends ServerModule {
|
||||||
this.addRoute({
|
this.addRoute({
|
||||||
method : 'GET',
|
method : 'GET',
|
||||||
path : '/static/.*$',
|
path : '/static/.*$',
|
||||||
handler : this.routeStaticFile,
|
handler : this.routeStaticFile.bind(this),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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.
|
See [Web Server](web_server.md) for more information.
|
||||||
|
|
||||||
## oputil
|
## 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
|
```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.
|
Loading…
Add table
Add a link
Reference in a new issue