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.
- Fork this project.
- Implement your own filter classes (which should extend
PassoverFilter
) and put them intoio.github.sinri.passover.filters
. - Write your own
keel.properties
andconfig.yml
, and put them intosrc/main/resources
or along with the packagedjar
file. - Package project with
mvn clean package
. - Run with
jar
file usingjava -jar
command.