this post was submitted on 24 Dec 2024
24 points (90.0% liked)

Selfhosted

40858 readers
588 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 2 years ago
MODERATORS
 

Im trying self host my things (like Wallabag).. but this is extremely complicated to me and I have lot issues with it. And i know its probably to ruin what i do with self host and do somehing shit.

that being said, i remember see some people where provide services/instances for free to use wallabag and other things , where we can use it. If I use one, obviously i would donate money to them

i know i need to trust on who do this, but my question is if you know any instance or services trustworthy to sign up a wallabag account, since i cannot self host mine .

Thank you and merry xmas.

top 4 comments
sorted by: hot top controversial new old
[–] macattack 6 points 1 week ago* (last edited 1 week ago)

I hate to be that guy but I think that you should persevere and try to resolve the issue instead of paying someone. I suggest using a large language model to troubleshoot existing problems. For every three or four easy-to-run containers, there are usually one to two shitstorms lacking proper/ easy to follow documentation but that doesn't mean the end result isn't worth the effort. If I recall correctly I also have issues with wallabag but eventually got it to run.

Alternatively you can use something like link Warden or obsidian to self-host.

[–] [email protected] 3 points 1 week ago

Depending on how much you want to donate, you could also pay for a server somewhere. For example Hetzner hosting starts pretty cheap. That way you can self-host without having to host it on a physical machine.

[–] k4j8 2 points 1 week ago

I know your question is regarding hosted options, but how were you trying to self-host Wallabag? I do it with Docker Compose and SQLite. It's a very simple setup (see below) based on their example at https://github.com/wallabag/docker?tab=readme-ov-file#docker-compose.

services:
  wallabag:
    image: wallabag/wallabag
    restart: unless-stopped
    environment:
      - SYMFONY__ENV__DOMAIN_NAME=https://wallabag.example.com
    ports:
      - XXXX:80  # replace with an open port
    volumes:
      - ./data:/var/www/wallabag/data
      - ./images:/var/www/wallabag/web/assets/images
    healthcheck:
      test: ["CMD", "wget" ,"--no-verbose", "--tries=1", "--spider", "http://localhost"]
      interval: 1m
      timeout: 3s

If you're not self-hosting anything yet, I suggest learning Docker Compose and Caddy. It makes setup of new services really easy.

Alternatively, you could try something like Yunohost that handles this for you but replaces your OS.

[–] just_another_person 1 points 1 week ago* (last edited 1 week ago)

Seems they offer a hosted version for less than $1/mo.

If you're talking generally about other services, it varies widely in what you're going host. Will the host charge for traffic or storage? If so, be very careful about what you host.

If you just want something to kick around DigitalOcean has decent free-tier stuff and it is pretty simple for beginners.