Gitea development v0.0.1 (#1)

The first working version is tested against a Debian machine.

Reviewed-on: http://gitea.tomsitcafe.com:3000/iron/ds-gitea/pulls/1
Co-authored-by: DeadSwitch <deadswitch404@proton.me>
Co-committed-by: DeadSwitch <deadswitch404@proton.me>
This commit is contained in:
Tom
2026-02-09 15:08:11 +01:00
committed by DeadSwitch
parent f45e4cc076
commit 764883f26d
2 changed files with 56 additions and 6 deletions

View File

@@ -6,6 +6,10 @@
This role installs and configures a basic [[https://docs.gitea.com/][Gitea]] server.
Currently it uses SQLite as its database service.
Use the =ds-ufw= role to set up the firewall.
* Features
- Download and install the Gitea binary
@@ -22,7 +26,7 @@ gitea_user: git
gitea_group: git
#+end_src
Remaining variables must be declared in the inventory.
The remaining variables must be declared in the inventory.
* Requirements
@@ -54,8 +58,47 @@ Remaining variables must be declared in the inventory.
- =Reload_systemd=: It runs a =daemon-reload=
- =Restart_gitea=: It restarts the Gitea service
* Secrets
Always store the production secrets in SOPS, or in Ansible Vault.
Generate the secrets manually when the playbook stops:
#+begin_src shell
gitea generate secret INTERNAL_TOKEN
gitea generate secret JWT_SECRET
#+end_src
Use the =JWT_SECRET= command to generate the =gitea_lfs_jwt_secret= as well. It's an alias.
Then re-run the playbook to finish the installation.
* Example Playbook
#+begin_src yaml
- name: Deploy a Gitea server
hosts: gitea
become: true
vars:
gitea_user: git
gitea_group: git
gitea_binary_url: https://dl.gitea.com/gitea/1.25.4/gitea-1.25.4-linux-amd64
gitea_checksum_url: https://dl.gitea.com/gitea/1.25.4/gitea-1.25.4-linux-amd64.sha256
gitea_app_name: Tom's IT Cafe Gitea Server
gitea_ssh_domain: gitea.tomsitcafe.com
gitea_domain: gitea.tomsitcafe.com
gitea_http_port: 3000
gitea_root_url: http://gitea.tomsitcafe.com:3000
# In prod put these secrets in SOPS:
gitea_lfs_jwt_secret: G9bZrRHMhRQ8w4R0KkH2VLnx2rzq81ROQ951IQjlMs4
gitea_internal_token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYmYiOjE3NzA2Mzk1Njh9.ybbaeNLFiLbyvxfj4vkqhXSAXKRGpwvP8jIm9YLPgXw
gitea_jwt_secret: uJni4x4e0AzpkLYc-t4keRJKOB6EaLzwVsdLeamkFyU
roles:
- role: ds-gitea
#+end_src
* License
MIT

View File

@@ -28,17 +28,24 @@
dest: /usr/local/bin/gitea
checksum: "sha256:{{ gitea_checksum_url }}"
- name: Pause to save the generated secrets in SOPS
- name: Set the permissions of the Gitea binary
ansible.builtin.file:
path: /usr/local/bin/gitea
owner: "{{ gitea_user }}"
group: "{{ gitea_group }}"
mode: '0750'
- name: Pause to generate and save the secrets in SOPS
ansible.builtin.pause:
prompt: |
[SECURITY NOTICE]
If this is a fresh install, generate these secrets:
1. gitea generate secret INTERNAL_TOKEN
2. gitea generate secret JWT_SECRET
3. gitea generate secret LFS_JWT_SECRET
1. gitea generate secret INTERNAL_TOKEN - for gitea_internal_token
2. gitea generate secret JWT_SECRET - for gitea_lfs_jwt_secret
3. gitea generate secret JWT_SECRET - for gitea_jwt_secret
Copy the following keys into SOPS:
- gitea_lfs_jwt_secret
- gitea_internal_token
- gitea_lfs_jwt_secret
- gitea_jwt_secret
Press ENTER once done to continue.
when: gitea_internal_token is not defined