sshifu-trust 0.6.2 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +49 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # sshifu-trust
2
+
3
+ Configure SSH servers to trust the sshifu certificate authority.
4
+
5
+ ## Installation
6
+
7
+ ### Quick Start (Recommended)
8
+
9
+ Use `npx` to run without installing:
10
+
11
+ ```bash
12
+ sudo npx sshifu-trust auth.example.com
13
+ ```
14
+
15
+ ### Install Globally
16
+
17
+ For frequent use, install globally:
18
+
19
+ ```bash
20
+ npm install -g sshifu-trust
21
+ ```
22
+
23
+ Then use directly:
24
+
25
+ ```bash
26
+ sudo sshifu-trust auth.example.com
27
+ ```
28
+
29
+ This will configure your SSH server to trust certificates signed by the sshifu CA at the specified address.
30
+
31
+ ## Features
32
+
33
+ - 🔐 **CA Trust Configuration** - Automatically configures SSH server to trust the CA
34
+ - 🛠️ **Simple Setup** - One command to configure trust
35
+ - 🔒 **Secure** - Only trusts the specific CA, no other changes
36
+
37
+ ## Requirements
38
+
39
+ - Node.js 14.0.0+
40
+ - sudo access on the target SSH server
41
+ - Go binary (will be downloaded automatically on install)
42
+
43
+ ## Full Documentation
44
+
45
+ See the complete documentation at [github.com/azophy/sshifu](https://github.com/azophy/sshifu)
46
+
47
+ ## License
48
+
49
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sshifu-trust",
3
- "version": "0.6.2",
3
+ "version": "0.7.0",
4
4
  "description": "Configure SSH servers to trust sshifu certificate authority",
5
5
  "main": "bin/sshifu-trust.js",
6
6
  "bin": {