Skip to content

Application Hosting

flowchart TD
    subgraph linux-server [Linux Server]
        rev-proxy(Reverse Proxy)
        db(Database)
        web-app(Web Application)
        nomad(Nomad)
        consul(Consul)

        rev-proxy --> web-app
        web-app --> db
    end

    user(User)
    user -- Connects over https --> rev-proxy 

Notes:

  • The only publicly accessible ports on the server are 22 (SSH), 80 (HTTP, which redirects to HTTPS), 443 (HTTPS) and 4646 (Nomad) all other ports are blocked by the firewall

Last update: August 12, 2023
Created: August 12, 2023