Distributed elixir app between fly.io and home

Is it possible to create a proxy to a fly.io app, enabling distributed computing between that app and a local counterpart?

I need an elixir app serving TCP or HTTP requests with a public IP near the client, which is what fly.io is for. That app would just be some sort of a proxy and just send commands to a local app, in my office, that would then serve the request and return the result to the fly.io instance so it can be sent back to the HTTP client.

Need something that works like in the Elixir Documentary.

Yes, you can! We have a guide showing how to connect a local livebook to your fly app, but is broadly applicable to any Elixir app:

1 Like

Opens up so many possibilities! I am shocked…

Thanks Chris for taking the time to answer.