Install Gitea on Ubuntu 20.04
Go to file
Sarimoko ea5471f8da Update 'install.sh' 2022-02-19 10:02:39 +00:00
.gitignore Initial commit 2021-07-05 04:18:15 +00:00
LICENSE Initial commit 2021-07-05 04:18:15 +00:00
README.md Update 'README.md' 2021-07-19 05:09:29 +00:00
apache.conf Add 'apache.conf' 2021-07-22 22:24:10 +00:00
install.sh Update 'install.sh' 2022-02-19 10:02:39 +00:00

README.md

Gitea

Install Gitea on Ubuntu 20.04

mysql
CREATE USER 'gitea' IDENTIFIED BY 'secret';
CREATE DATABASE gitea CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';
GRANT ALL PRIVILEGES ON gitea.* TO 'gitea';
FLUSH PRIVILEGES;
exit