Gitea

De Banane Atomic
Version datée du 16 octobre 2023 à 11:18 par Nicolas (discussion | contributions) (Page créée avec « = Install on Ubuntu = == [https://docs.gitea.com/installation/database-prep#mysqlmariadb Database Preparation] == <kode lang='mariadb'> 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; </kode> == [https://docs.gitea.com/installation/install-from-binary Installation from binary] == <kode lang='bash'> # create... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)
Aller à la navigationAller à la recherche

Install on Ubuntu

Database Preparation

Mariadb.svg
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

Bash.svg
# 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/

  1. If using Unix socket: tells systemd to create the /run/gitea folder, which will contain the gitea.sock file
  2. (manually creating /run/gitea doesn't work, because it would not persist across reboots)
  3. 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>

Create an UFW application