🚦 Reverse proxies

artistical representation of rama reverse proxy as llama directing traffic
In computer networks, a reverse proxy is an application that sits in front of back-end applications and forwards client (e.g. browser) requests to those applications. The resources returned to the client appear as if they originated from the web server itself.

Wikipedia

Examples:

Description

%3clientclientproxy (rama)proxy (rama)client->proxy (rama)server Aserver Aproxy (rama)->server Aserver Bserver Bproxy (rama)->server B

Reverse proxies are very common and chances are big that you've set it up yourself already, beknowingly or not. For standard proxy cases like this, the default proxy solutions available are usually good enough. It is however just as simple to make with rama, which gives you a degree of freedom that might come in handy.

The reasons on why one wants a reverse proxies are usually among the following:

  • it improves security by:
    • having only one service exposed to the public intranet;
    • your "backend" applications can stay very simple, e.g. a plain old http server;
    • all your policies, authentication, firewall rules and more can be handled in this one place;
  • tls connections are typically terminated here, forwarding the requests as plain text over the internal network to the "backend services;

A trivial example is that it allows your old PHP http/1 web service to be exposed to the web as a secured h3 server with caching and more provided, without changing your code from the 90s / early 2000s. If that is what you want.