Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hexagon6/sub-ingress
a simple http-ingress reverse proxy - easily configurable for subdomains
https://github.com/hexagon6/sub-ingress
ingress node npm reverse-proxy subdomain
Last synced: about 1 month ago
JSON representation
a simple http-ingress reverse proxy - easily configurable for subdomains
- Host: GitHub
- URL: https://github.com/hexagon6/sub-ingress
- Owner: hexagon6
- Created: 2019-12-11T01:05:47.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-03T10:14:33.000Z (about 4 years ago)
- Last Synced: 2024-11-20T01:35:36.898Z (about 1 month ago)
- Topics: ingress, node, npm, reverse-proxy, subdomain
- Language: JavaScript
- Size: 514 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# http-ingress
## Purpose
This software package can run a simple http-based ingress server, configurable with a yaml-file.
It should map incoming HTTP requests like a reverse proxy.
e.g.
We have a configuration file
like this
config/example.com.yml
```yaml
www: '10.0.0.2:2444'
www2: '10.0.0.2:2445'
```which should forward HTTP requests to the defined endpoint
```network
HTTP -> `www.example.com` -> `10.0.0.2:2444`
HTTP -> `www2.example.com` -> `10.0.0.2:2445`
```- [ ] Setup tests (ava & supertest)