How to monetize services? - eviltoast

Hi guys. how can I monetize my rustdesk servers? like, imagine I tell client X to pay 1$/month for using my server, how can I authenticate users? (prevent others from using the server so only people who are paying can use).

  • @johntash
    link
    11 year ago

    Assuming you have more than a handful clients, you’ll probably want some sort of CRM/billing system to keep track of who’s paid. And then you’ll want a centralized IAM tool where you can provision new accounts or deactivate ones that stop paying.

    That also depends on whether the underlying service supports some sort of sso/login federation.

    You can also just do everything by hand for the beginning, until it takes up too much time.

    • @somegeek@programming.devOP
      link
      fedilink
      11 year ago

      thanks. rustdesk doesn’t have any authentication except for keys, which is generated for each server. someone suggested that I could spin up a server and key for each client.