this post was submitted on 28 Jun 2023
2 points (62.5% liked)

Selfhosted

39435 readers
4 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
2
How to monetize services? (self.selfhosted)
submitted 1 year ago* (last edited 1 year ago) by somegeek to c/[email protected]
 

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).

CONTEXT: I live in a country with very limited internet (like china) so using public servers is not good. I would also have to be able to maintain the costs of the server. so this is not illegal and not unethical.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 1 year ago (1 children)

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 1 points 1 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.