this post was submitted on 04 Jul 2023
66 points (97.1% liked)

Selfhosted

39250 readers
185 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
 

Hi all, I tried hosting my own lemmy instance to take some of the load off lemmy.world, but a lot of the posts do not get synchronised to my instance. When they do, they never got more than a couple upvotes.

I get a lot of warnings in the logs that I've got an incoming connection not on my allowed hosts, of which I've put "lemmy.world" and "lemmy.ml"

Does self hosting like this actually reduce the load on lemmy.world and the fediverse? And how can I fix the issue I'm having?

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

You won't get much old data when you first start subscribing to new communities from your instance. You'll only get new content. When you add a community you'll get 20 recent topics with no comments or upvotes. As new content comes in you'll pick up all of it. At least one member of your instance needs to subscribe to a community to begin syncing with that community. To solve the lack of content on my personal instance, I made a bot that subscribed to the top 300 communities with more than 1000 subscribers. After a day or so I now have tons of content.. I may stick the bot script on a weekly cronjob to keep my instance synced with the largest communities.

[–] [email protected] 1 points 1 year ago

this is the correct answer, someone listed it as a feature request or bug on GitHub https://github.com/LemmyNet/lemmy/issues/3448 but I'm not sure what the long term answer is.

I do agree though that is lends itself to encouraging people to larger instances which isn't really the spirit of Lemmy.

[–] [email protected] 1 points 1 year ago (2 children)

Can you share that? Would love to use it for our instance. Previously was subbing to stuff manually to populate our small instance and it was a pain.

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago) (1 children)

It's not great, but here it is: https://github.com/ducksdotdev/LemmySubscriber/tree/main .. I'll revisit the app sometime this week/weekend to make it better. Although, I believe there are a couple other scripts in the wild that do the same task and include their own method for crawling.

edit: https://github.com/Fmstrat/lcs -- looks like this is a better one than what I did if you want something different.

[–] [email protected] 1 points 1 year ago

Awesome thank you! Sorry delayed reply had a busy day

[–] [email protected] 1 points 1 year ago

I can share it, but right now I have it grabbing the latest artifact from the lemmy-exporter which looks like as of June 3rd they stopped updating their repo with the export artifact. Meaning, I need to implement some sort of crawler myself or use a different method for generating the list of communities.

I can share the code with this caveat if you want to use it anyway/try and change it yourself. It is written in Golang.. will post back in a bit with a github repo. need to set it up