homelab/roles/gitea/defaults/main.yml

23 lines
551 B
YAML
Raw Normal View History

2020-07-28 03:20:50 +00:00
# container settings
gitea_name: gitea
2022-05-27 06:28:51 +00:00
gitea_sshport: "222"
gitea_webport: "3000"
gitea_ssh: "127.0.0.1:{{ gitea_sshport }}"
gitea_web: "127.0.0.1:{{ gitea_webport }}"
gitea_volume: "{{ gitea_name }}"
gitea_rooturl: "https://{{ gitea_domain }}"
gitea_signup: true
2020-07-28 03:20:50 +00:00
# database settings
2022-08-12 01:04:07 +00:00
gitea_dbtype: mysql
gitea_dbhost: host.docker.internal
gitea_dbname: "{{ gitea_name }}"
gitea_dbuser: "{{ gitea_name }}"
2020-07-28 03:20:50 +00:00
# proxy settings
gitea_proxy_limit: "1"
gitea_trusted_proxies: "172.16.0.0/12"
2020-07-28 03:20:50 +00:00
# host
2022-05-28 03:14:06 +00:00
gitea_root: "{{ docker_compose_root }}/{{ gitea_name }}"