sshifu-server 0.6.2 → 0.6.3
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.
- package/README.md +39 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# sshifu-server
|
|
2
|
+
|
|
3
|
+
SSH authentication server with OAuth gateway and certificate authority.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g sshifu-server
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
sshifu-server
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
The server will prompt you to configure:
|
|
18
|
+
- GitHub OAuth credentials
|
|
19
|
+
- Certificate Authority (CA) settings
|
|
20
|
+
- Server listen address
|
|
21
|
+
|
|
22
|
+
## Features
|
|
23
|
+
|
|
24
|
+
- 🔐 **SSH Certificate Authority** - Issues short-lived SSH certificates
|
|
25
|
+
- 🌐 **OAuth Gateway** - GitHub organization authentication
|
|
26
|
+
- 📦 **Minimal Infrastructure** - Single server, no database required
|
|
27
|
+
|
|
28
|
+
## Requirements
|
|
29
|
+
|
|
30
|
+
- Node.js 14.0.0+
|
|
31
|
+
- Go binary (will be downloaded automatically on install)
|
|
32
|
+
|
|
33
|
+
## Full Documentation
|
|
34
|
+
|
|
35
|
+
See the complete documentation at [github.com/azophy/sshifu](https://github.com/azophy/sshifu)
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
MIT
|