Introduction¶
The Uniport-Gateway acts as an reverse proxy for all requests in Uniport.

Overview¶
The Uniport-Gateway build on top of the concepts of entrypoints, routers, middlewares, services and providers:
- An
entrypointconfigures the port it is listening on - A
routerconfigures aruleto route requests, e.g. based on the request's host or path - A
routermay havemiddlewaresto manipulate a request - A
routerpasses the request to aservicethat forward the request to the destination server - A
providerreads configuration, e.g. from a file, and provisions therouter,middlewaresandservicesaccordingly.