https://github.com/entraptaj/ssh-proxy
SSH Auditing Proxy written in TypeScript for K-Net
https://github.com/entraptaj/ssh-proxy
Last synced: over 1 year ago
JSON representation
SSH Auditing Proxy written in TypeScript for K-Net
- Host: GitHub
- URL: https://github.com/entraptaj/ssh-proxy
- Owner: EntraptaJ
- Created: 2020-09-16T14:36:22.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-06T15:31:24.000Z (over 5 years ago)
- Last Synced: 2025-03-28T20:06:10.697Z (over 1 year ago)
- Language: TypeScript
- Size: 408 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# KristianFJones/SSH-Proxy
This is an SSH Proxy service to "reverse proxy" and audit/log all incoming SSH connections.
## Usage
TODO: Usage Docs
### Environment Variables
| ENV Variable | Description | Default |
| ------------ | --------------------------------------------------------------------- | ----------- |
| DB_HOST | Hostname/IP of the Database Server | `Database` |
| DB_PORT | Port of the Database Server | `5432` |
| DB_DATABASE | Database to use/store on the Database Server | `ssh-proxy` |
| DB_USER | Username to use to login to the database server | `postgres` |
| DB_PASS | Password of the database user | `pgpass` |
| HOST | Host to bind the server to (Not needed when running in container) | `0.0.0.0` |
| SSH_HOST | Host to bind the SSH server to (Not needed when running in container) | `$HOST` |
| SSH_PORT | Port to run the SSH Server on | `8022` |
| PORT | Port to run the Web server on | `8080` |