https://github.com/sinri/passover
基于 Vert.x 的简单 HTTP 网关
https://github.com/sinri/passover
gateway
Last synced: about 1 year ago
JSON representation
基于 Vert.x 的简单 HTTP 网关
- Host: GitHub
- URL: https://github.com/sinri/passover
- Owner: sinri
- License: gpl-3.0
- Created: 2019-02-22T12:30:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-03-07T09:47:03.000Z (about 4 years ago)
- Last Synced: 2025-01-29T18:33:31.581Z (over 1 year ago)
- Topics: gateway
- Language: Java
- Homepage:
- Size: 110 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Passover
A simple web gateway based on Vert.X 4.
Let Vert.x be the HTTP server, when requests come, filter them and send to configured target server, and pass the
responses to clients.
## Basic Usage
1. Fork this project.
2. Implement your own filter classes (which should extend `PassoverFilter`) and put them
into `io.github.sinri.passover.filters`.
3. Write your own `keel.properties` and `config.yml`, and put them into `src/main/resources` or along with the
packaged `jar` file.
4. Package project with `mvn clean package`.
5. Run with `jar` file using `java -jar` command.