Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajnasz/ansible-role-gitea
Ansible role for gitea
https://github.com/ajnasz/ansible-role-gitea
ansible ansible-role gitea
Last synced: about 14 hours ago
JSON representation
Ansible role for gitea
- Host: GitHub
- URL: https://github.com/ajnasz/ansible-role-gitea
- Owner: Ajnasz
- License: mit
- Created: 2019-11-01T08:21:59.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-02T06:17:50.000Z (3 months ago)
- Last Synced: 2024-08-02T07:36:21.196Z (3 months ago)
- Topics: ansible, ansible-role, gitea
- Language: Jinja
- Size: 28.3 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Role Gitea
Ansible role for [gitea.io](https://gitea.io)
Currently handles only armv7 (raspberry pi) and tested behind a nginx reverse proxy.
## Variables
See defaults/main.yml and [https://docs.gitea.io/en-us/config-cheat-sheet/](https://docs.gitea.io/en-us/config-cheat-sheet/)
```
gitea_user: "git"
gitea_group: "git"gitea_version: "1.22.1"
gitea_app_name: "Gitea: Git with a cup of tea"
gitea_run_user: "{{ gitea_user }}"
gitea_run_mode: "prod"gitea_home: "/home/git"
gitea_http_addr: "127.0.0.1"
gitea_http_port: 6174
gitea_domain: ""
gitea_protocol: "http"
gitea_root_url: ""
gitea_ssh_domain: ""
gitea_mailer_smtp_addr: ""
gitea_mailer_smtp_port: ""
gitea_mailer_from: ""gitea_server_disable_ssh: false
gitea_server_lfs_start_server: true
gitea_server_lfs_content_path: "{{ gitea_home }}/data/lfs"
gitea_server_offline_mode: falsegitea_security_install_lock: true
gitea_database_db_type: "sqlite3"
gitea_database_host: "127.0.0.1:3306"
gitea_database_name: "gitea"
gitea_database_user: "gitea"
gitea_database_passwd:
gitea_database_ssl_mode: "disable"
gitea_database_path: "data/gitea.db"gitea_repository_root: "{{ gitea_home }}/gitea-repositories"
gitea_mailer_enabled: true
gitea_mailer_user:
gitea_mailer_passwd:gitea_service_register_email_confirm: false
gitea_service_enable_notify_mail: true
gitea_service_disable_registration: true
gitea_service_allow_only_external_registration: false
gitea_service_enable_captcha: false
gitea_service_require_signin_view: false
gitea_service_default_keep_email_private: false
gitea_service_default_allow_create_organization: true
gitea_service_default_enable_timetracking: true
gitea_service_no_reply_address: "noreply.example.org"gitea_picture_disable_gravatar: false
gitea_picture_enable_federated_avatar: truegitea_session_provider: "file"
gitea_openid_enable_openid_signin: true
gitea_openid_enable_openid_signup: falsegitea_log_mode: "file"
gitekoszti.hua_log_level: "Info"
gitea_log_root_path: "{{ gitea_home }}/log"gitea_ui_explore_paging_num: 20
gitea_ui_issue_paging_num: 10
gitea_ui_feed_max_commit_num: 5
gitea_ui_graph_max_commit_num: 100
gitea_ui_default_theme: gitea-autogitea_metrics_enabled: false
gitea_metrics_token: ""gitea_do_backup: true
gitea_systemd_timer_on_calendar: '*-*-* 02:00:00'
gitea_systemd_timer_randomized_delay_sec: 0
```