this post was submitted on 13 May 2025
17 points (90.5% liked)

Selfhosted

46672 readers
1063 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
 

LinkStack looks like it hasn't been updated in 2+ years. Any self hosted alternatives anyone recommends?

Maybe even a static site generator?

you are viewing a single comment's thread
view the rest of the comments
[–] Flax_vert@feddit.uk 17 points 1 day ago (2 children)

Linktree? Can't you just host an html page using apache or nginx?

[–] ozoned@piefed.social 1 points 2 hours ago (1 children)

Yes! I can. I'm just TERRIBLE with Dev Stuff and not a fan either. lol But if you have recommends on how to host something like that and make it look ince, I'm all for hearing it! :-)

[–] Flax_vert@feddit.uk 1 points 1 hour ago* (last edited 1 hour ago)

Hosting is dead easy. Usually you just do sudo apt-get install apache2 for a start, and then it'll host an html file on port 80 (HTTP), usually /var/www/html/index.html

w3schools.com is great for learning css and html.

You'd want to forward port 80 on your router then to get it accessible on the open web.

On your domain service, you'll want to make an A record pointing to your IPV4 address and an AAAA record pointing to your IPV6 address.

If you have a dynamic IP (your IPV4 changes often) you can get scripts which run on a schedule to check your ip address and remotely update your A record using an API from your DNS.

You'll also want to use certbot (an installable application) to manage an HTTPS certificate, then forward port 443 (HTTPS)

I know this is a very quick rundown, but hopefully it points you in the correct direction!