0

What is the simplest solution to integrate Akka HTTP service with / into Lagom?

I have two services - akkahttp:8000 and lagom:9000, they are serving methods for Angular application. It would be great to have one endpoint for all the services - x:8888 for x:8888/akkahttp and x:8888/lagom.

Etam
  • 4,553
  • 10
  • 40
  • 60

1 Answers1

1

This problem is often solved by using some kind of reverse proxy server that faces clients and forwards traffic to your Akka HTTP and Lagom services over an internal network.

Popular reverse proxy solutions include:

Lightbend ConductR is the recommended and supported deployment environment for Lagom and Akka based services. It includes a built-in, HAProxy-based dynamic proxy that supports this kind of configuration.

Tim Moore
  • 8,958
  • 2
  • 23
  • 34