Gitea
Apparence
Install on Ubuntu
Database Preparation
create database gitea character set 'utf8mb4' collate 'utf8mb4_general_ci';
create user 'gitea'@'localhost' identified by '[PWD]';
grant all privileges on gitea.* to 'gitea'@'localhost';
flush privileges;
|
Installation from binary
# create a user to run Gitea
sudo adduser --system --shell /bin/bash --gecos 'Git Version Control' --group --disabled-password --home /home/gitea gitea
# create required directory structure
mkdir -p /var/lib/gitea/{custom,data,log}
chown -R gitea:gitea /var/lib/gitea/
chmod -R 750 /var/lib/gitea/
mkdir /etc/gitea
chown root:gitea /etc/gitea
chmod 770 /etc/gitea
wget https://dl.gitea.com/gitea/1.20.5/gitea-1.20.5-linux-arm64 -O gitea
sudo mv gitea /usr/local/bin
sudo chown root:root /usr/local/bin/gitea
sudo chmod 755 /usr/local/bin/gitea
|
Run as service
<filebox fn='/etc/systemd/system/gitea.service' lang='ini' collapsed> [Unit] Description=Gitea (Git with a cup of tea) After=syslog.target After=network.target
Wants=mariadb.service After=mariadb.service
[Service] RestartSec=2s Type=notify User=gitea Group=gitea WorkingDirectory=/var/lib/gitea/
- If using Unix socket: tells systemd to create the /run/gitea folder, which will contain the gitea.sock file
- (manually creating /run/gitea doesn't work, because it would not persist across reboots)
- RuntimeDirectory=gitea
ExecStart=/usr/local/bin/gitea web --config /etc/gitea/app.ini Restart=always Environment=USER=gitea HOME=/home/gitea GITEA_WORK_DIR=/var/lib/gitea WatchdogSec=30s
[Install] WantedBy=multi-user.target </kode>