« Gitea » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
Aucun résumé des modifications |
|||
Ligne 11 : | Ligne 11 : | ||
<kode lang='bash'> | <kode lang='bash'> | ||
# create a user to run Gitea | # create a user to run Gitea | ||
sudo adduser --system | sudo adduser --system --group --disabled-password gitea | ||
# create required directory structure | # create required directory structure |
Version du 16 octobre 2023 à 13:23
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 --group --disabled-password 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
/etc/systemd/system/gitea.service |
[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 |