this post was submitted on 20 Aug 2024
158 points (91.1% liked)

Selfhosted

39167 readers
373 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
 

I've recently set up my own Gitea instance and I figured I'd share a simple guide on how to do it yourself. Hopefully this will be helpful to anyone looking to get started.

If you have any feedback please feel free to comment it bellow.

you are viewing a single comment's thread
view the rest of the comments
[–] cizra@lemm.ee 11 points 3 weeks ago (4 children)

I started running my own Gitea instance because I wanted a private place to host my Obsidian notes.

I don't have the time to read the article now, but permit a question: what do you use Gitea for?

I'm holding my dotfiles on a SSH server, clone/push over SSH, and it's enough to do Git. I don't need a ticket system, or wiki or anything (I use plaintext notes).

$ cat ~/.ssh/config
Host srv
  Hostname srv.mywhatever.com

$ git clone srv:/path/to/repo
$ cd repo
$ git push
[–] Miaou@jlai.lu 1 points 3 weeks ago

I'm hoping federation will allow me to get rid of my github entirely, but that's wishful thinking I fear

load more comments (3 replies)