2019-11-25 00:50:21 +00:00
|
|
|
---
|
|
|
|
gitea_service_name: gitea.service
|
|
|
|
gitea_service_state: started
|
|
|
|
gitea_service_enabled: yes
|
|
|
|
|
|
|
|
gitea_arch: amd64
|
2019-12-11 03:59:45 +00:00
|
|
|
gitea_version: 1.10.1
|
2019-11-25 00:50:21 +00:00
|
|
|
gitea_url: "https://dl.gitea.io/gitea/{{ gitea_version }}/gitea-{{ gitea_version }}-linux-{{ gitea_arch }}"
|
2019-12-11 03:59:45 +00:00
|
|
|
gitea_checksum: sha256:4e6bcb8fe9f4f5cc6f0e0c15a0dd67e9448a7ebd1592169862f0d4424a8f23ad
|
2019-11-25 00:50:21 +00:00
|
|
|
gitea_bin_path: /usr/local/bin
|
|
|
|
gitea_var_path: /var/lib/gitea
|
|
|
|
gitea_log_path: /var/log/gitea
|
|
|
|
gitea_etc_path: /etc/gitea
|
|
|
|
gitea_path: "{{ gitea_bin_path }}/gitea"
|
|
|
|
gitea_config_path: "{{ gitea_etc_path }}/app.ini"
|
|
|
|
gitea_systemd_unit_path: /etc/systemd/system/gitea.service
|
|
|
|
gitea_user: git
|
|
|
|
gitea_group: git
|
|
|
|
gitea_shell: /bin/bash
|
|
|
|
gitea_gecos: Git Version Control
|
|
|
|
gitea_password: !
|
|
|
|
gitea_home_path: /home/git
|
2019-12-01 19:44:49 +00:00
|
|
|
gitea_port: 3001
|
2019-11-25 00:50:21 +00:00
|
|
|
|
|
|
|
gitea_config:
|
2019-11-29 19:17:13 +00:00
|
|
|
DEFAULT:
|
|
|
|
run_mode: prod
|
2019-11-25 00:50:21 +00:00
|
|
|
server:
|
2019-12-01 19:44:49 +00:00
|
|
|
http_port: "{{ gitea_port }}"
|
|
|
|
http_addr: localhost
|
2019-11-25 00:50:21 +00:00
|
|
|
domain: "{{ gitea_domain }}"
|
|
|
|
root_url: "{{ gitea_ssl_enabled | ternary('https', 'http') }}://{{ gitea_domain }}/"
|
|
|
|
oauth2:
|
|
|
|
jwt_secret: "{{ vault_gitea_jwt_secret }}"
|
|
|
|
security:
|
|
|
|
install_lock: true
|
|
|
|
internal_token: "{{ vault_gitea_internal_token }}"
|
|
|
|
database:
|
|
|
|
db_type: sqlite3
|
|
|
|
log:
|
|
|
|
root_path: /var/log/gitea
|
|
|
|
mode: file
|
|
|
|
access: file
|
|
|
|
macaron: file
|
|
|
|
router: file
|
|
|
|
redirect_macaron_log: true
|
|
|
|
log.console:
|
|
|
|
colorize: no
|
|
|
|
service:
|
|
|
|
disable_registration: yes
|
|
|
|
|
|
|
|
gitea_var_tree:
|
|
|
|
- "{{ gitea_var_path }}"
|
|
|
|
- "{{ gitea_var_path }}/custom"
|
|
|
|
- "{{ gitea_var_path }}/data"
|
|
|
|
- "{{ gitea_var_path }}/log"
|
2020-01-01 17:18:26 +00:00
|
|
|
- "{{ gitea_var_path }}/backup"
|
2019-11-25 00:50:21 +00:00
|
|
|
|
|
|
|
gitea_ssl_enabled: yes
|
|
|
|
gitea_ssl_certificate: "/etc/letsencrypt/live/{{ gitea_domain }}/fullchain.pem"
|
|
|
|
gitea_ssl_certificate_key: "/etc/letsencrypt/live/{{ gitea_domain }}/privkey.pem"
|
|
|
|
#gitea_ssl_dhparam: "/etc/letsencrypt/ssl-dhparams.pem"
|