🚈Configuring a Reverse Proxy

What is the a Reverse Proxy for?

You can use and configure this if you want to use a custom domain for Lapsus Client.

For this example, we will be using Nginx.

Follow these steps:

  1. Login to your DNS and domain manager (ex. Cloudflare), go to your domain and create a DNS record of type A. For a name put what you want your subdomain to be (ex. client or dash). You can also put @ for the root. On IPv4 Address put the IP of the VPS you'll use to configure the Nginx Reverse Proxy (yeah, you will need a VPS to do this).

Cloudflare - Creating a custom domain for Lapsus Client
  1. Login to your VPS using SSH and run the following commands:

Alternative method to request a certificate:

Select option 1 (Nginx Webserver) and follow the steps you will see. nano /etc/nginx/sites-enabled/lapsusclient.conf

  1. Paste the following code, replacing <domain> with your domain and <port> with your port (default 8000).

  1. Close your editor and run sudo systemctl restart nginx.

Last updated