* Updated some packages
* Updated README.md with SSH key gen config
This commit is contained in:
parent
9df21170c6
commit
e299b9269e
17
README.md
17
README.md
|
@ -66,7 +66,22 @@ messages: {
|
||||||
```bash
|
```bash
|
||||||
npm install
|
npm install
|
||||||
```
|
```
|
||||||
4. Launch:
|
4. Generate a PK for SSH usage:
|
||||||
|
```bash
|
||||||
|
mkdir misc
|
||||||
|
openssl genrsa -des3 -out ./misc/ssh_private_key.pem 2048
|
||||||
|
```
|
||||||
|
|
||||||
|
After generation, set servers.ssh.privateKeyPass to your password in config.hjson:
|
||||||
|
```hjson
|
||||||
|
servers: {
|
||||||
|
ssh: {
|
||||||
|
privateKeyPass: YOUR_PK_PASS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
5. Launch:
|
||||||
```bash
|
```bash
|
||||||
node main.js
|
node main.js
|
||||||
```
|
```
|
||||||
|
|
10
package.json
10
package.json
|
@ -4,16 +4,16 @@
|
||||||
"description": "ENiGMA½ Bulletin Board System",
|
"description": "ENiGMA½ Bulletin Board System",
|
||||||
"author": "Bryan Ashby <bryan@l33t.codes>",
|
"author": "Bryan Ashby <bryan@l33t.codes>",
|
||||||
"license": "BSD-2-Clause",
|
"license": "BSD-2-Clause",
|
||||||
"repository" : {
|
"repository": {
|
||||||
"type" : "git",
|
"type": "git",
|
||||||
"url" : "https://github.com/NuSkooler/enigma-bbs.git"
|
"url": "https://github.com/NuSkooler/enigma-bbs.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bbs",
|
"bbs",
|
||||||
"telnet"
|
"telnet"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": "1.4.x",
|
"async": "^1.5.0",
|
||||||
"binary": "0.3.x",
|
"binary": "0.3.x",
|
||||||
"buffers": "0.1.x",
|
"buffers": "0.1.x",
|
||||||
"bunyan": "1.5.x",
|
"bunyan": "1.5.x",
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
"node-uuid": "1.4.x",
|
"node-uuid": "1.4.x",
|
||||||
"pty.js": "0.3.x",
|
"pty.js": "0.3.x",
|
||||||
"sqlite3": "3.1.x",
|
"sqlite3": "3.1.x",
|
||||||
"ssh2": "^0.4.11",
|
"ssh2": "^0.4.12",
|
||||||
"string-format": "davidchambers/string-format#mini-language"
|
"string-format": "davidchambers/string-format#mini-language"
|
||||||
},
|
},
|
||||||
"engine": "node >= 0.12.2"
|
"engine": "node >= 0.12.2"
|
||||||
|
|
Loading…
Reference in New Issue