1
0
Fork 1
gitea-installer.sh/README.md

44 Zeilen
1.4 KiB
Markdown

2017-10-25 23:07:47 +00:00
# Gitea Installer
2018-02-27 16:22:32 +00:00
Installs [Gitea](https://gitea.io) (formerly gogs) as a systemd service
2017-10-25 23:07:47 +00:00
2017-10-28 05:27:16 +00:00
## Linux Install Script
2017-10-25 23:07:47 +00:00
2017-10-28 00:13:57 +00:00
You can download and run the installer script:
2017-10-25 23:07:47 +00:00
```bash
2017-11-10 17:45:35 +00:00
wget -O install-gitea.bash https://git.coolaj86.com/coolaj86/gitea-installer.sh/raw/master/install.bash
2017-10-28 00:13:57 +00:00
bash install-gitea.bash
```
Or manually install by reading these instructions and following along:
```bash
# Create a 'gitea' user and group with the home /opt/gitea, no password (because it's a system user) and no GECOS
sudo adduser gitea --home /opt/gitea --disabled-password --gecos ''
2017-10-25 23:07:47 +00:00
# Make some other potentially useful directories for that user/group
2017-10-25 23:33:34 +00:00
sudo mkdir -p /opt/gitea/ /var/log/gitea
sudo chown -R gitea:gitea /opt/gitea/ /var/log/gitea
2017-10-25 23:07:47 +00:00
# Download and install gitea
sudo wget -O /opt/gitea/gitea https://dl.gitea.io/gitea/1.0.1/gitea-1.0.1-linux-amd64
2017-10-28 00:13:57 +00:00
sudo chmod +x /opt/gitea/gitea
2017-10-25 23:07:47 +00:00
# Download and install the gitea.service for systemd
2017-11-10 17:49:50 +00:00
sudo wget -O /etc/systemd/system/gitea.service https://git.coolaj86.com/coolaj86/gitea-installer.sh/raw/master/dist/etc/systemd/system/gitea.service
2017-10-25 23:07:47 +00:00
# Start gitea
sudo systemctl restart gitea
```
2017-10-28 05:27:16 +00:00
## Gitea Web Setup (post install)
Once you've gitea installed and running you must choose
which database to use, certain gitea paths, an admin user, etc.
> http://localhost:3000/
2017-11-14 14:49:16 +00:00
# Troubleshooting systemd
2017-10-25 23:07:47 +00:00
2017-11-14 14:49:16 +00:00
See [Troubleshooting systemd](https://git.coolaj86.com/coolaj86/service-installer.sh/src/master/README.md#troubleshooting-systemd)