* Updated some packages

* Updated README.md with SSH key gen config
This commit is contained in:
Bryan Ashby
2015-10-29 16:01:21 -06:00
parent 9df21170c6
commit e299b9269e
2 changed files with 21 additions and 6 deletions

View File

@@ -66,7 +66,22 @@ messages: {
```bash
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
node main.js
```