gateway-service

gateway-service

Reverse proxy service for calling internal services.

This proxy depends on services implementing grpc-gateway alongside the gRPC server.

Usage

This proxy uses a yaml config file to map request paths to specific services.

You can also disable authentication for specific routes.

Example Config

service_map:
  - name: upload-service
    port: 9000
    prefixes:
      - "/api/v1/media"
      - "/api/v1/feed"
  - name: deployment-service
    port: 9000
    prefixes:
      - "/api/v1/deployments"

Last updated