Gitea adalah self-hosted Git service yang ringan, cepat, dan open-source. Alternatif GitHub/GitLab yang hanya butuh 512MB RAM.
apt install git mysql-server -y\n# Buat database\nmysql -u root -p\nCREATE DATABASE gitea;\nCREATE USER gitea@localhost IDENTIFIED BY "password";\nGRANT ALL ON gitea.* TO gitea@localhost;wget -O /usr/local/bin/gitea https://dl.gitea.com/gitea/latest/gitea-latest-linux-amd64\nchmod +x /usr/local/bin/gitea\nadduser --system --group git\nmkdir -p /var/lib/gitea/{custom,data,log}Buat service file agar Gitea auto-start.
Proxy domain git.domain.com ke Gitea yang berjalan di port 3000.
Buka browser ke domain git kamu dan ikuti wizard installer.
Git server pribadi siap! Fitur lengkap: repo, issue, pull request, wiki, CI/CD (Gitea Actions).