Selfhosted
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:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
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.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
view the rest of the comments
If you end up not liking WP, Drupal is another option. https://new.drupal.org/home. // https://www.drupal.org/project/activitypub
@KazuyaDarklight@lemmy.world
@ozoned@piefed.social
If you are going to evaluate Drupal in 2025, I STRONGLY encourage you to start with the Drupal CMS install. There are so many optional modules with Drupal, it can be overwhelming.
If you are already familiar with Docker, you can spin up a Drupal CMS instance using DDEV. You'll have no problem Googling that.
If you aren't familiar with Docker and want to try it, https://new.drupal.org/drupal-cms/launcher is a ridiculously easy way to start on most operating systems. That approach gets a little trickier when you want to move the site/cms application instance to a host. There is documentation, but I would look it over before getting too far into this approach.
My recommendation for spinning up a Drupal CMS instance is on a free sandbox on https://docs.pantheon.io/drupal-cms. Acquia offers a free trial in exchange for the information they need to target you with marketing, but it is only a 4 hour trial. Pantheon lets you keep your sandbox as long as you account remains active.
Unfortunately ActivityPub isn't included in any of the Drupal CMS Recipes (yet), so you have to add it with
composer require 'drupal/activitypub:^1.0@alpha'
.Composer is npm for PHP. If you are familiar npm, apt-get, homebrrw, pip, gem, etc, you'll have no problem understanding Composer.
I shall check into it! Thank you! :-)