A reverse proxy is a dedicated server that accepts requests from clients and forwards them to the origin server.
A reverse proxy acts as a single point of traffic delivery for the target server. This protects the servers from direct requests and hides their addresses from the client.
It all starts with the DNS server, which hands the client the reverse proxy's address instead of the origin, routing all requests to the proxy.

Using a reverse proxy has plenty of advantages. The main scenarios include the following.
Load balancing: distributing incoming requests across several servers, which helps avoid overloading any single one.
Privacy: IP addresses, the web server's provider and internal infrastructure details are hidden from visitors, adding an extra layer of security.
Security: the origin server is unknown to a potential attacker, who cannot scan it or discover vulnerable services such as SSH, RDP, a web service and others.
SSL termination: the reverse proxy takes on SSL encryption and decryption using the most secure cryptography, freeing internal servers from this task and removing the need to buy SSL/TLS certificates.
Architectural flexibility: routine and emergency maintenance of web servers can be done quickly and without disrupting users, by removing and adding them to the balancing pool.