SfTian Gitea二进制包作为系统进程安装 # Gitea二进制包作为系统进程安装 - 下载Gitea `wget -O gitea https://dl.gitea.io/gitea/1.16.9/gitea-1.16.9-linux-amd64` `chmod +x gitea` - 配置Gitea 下载Gitea之后使用 `./gitea web` 进行运行(注意开放3000端口) 访问`http://ip:3000`进行安装,随心填写你的内容,之后可以在custom/conf/app.ini中更改 安装成功后把他作为系统进程运行 - 系统进程编写 `vi /etc/systemd/system/gitea.service` `[Unit]` `Description=Gitea (Git with a cup of tea)` `After=syslog.target` `After=network.target` `[Service]` `RestartSec=2s` `Type=simple` `User=ubuntu` `Group=ubuntu` `WorkingDirectory=/web/gitea/` `ExecStart=/web/gitea/gitea web --config /web/gitea/custom/conf/app.ini` `Restart=always` `Environment=USER=ubuntu HOME=/home/ubuntu GITEA_WORK_DIR=/web/gitea` `[Install]` `WantedBy=multi-user.target` 之后保存输入 `systemctl start gitea` `systemctl enable gitea` 即可 取消回复 发表新评论 提交评论