23 lines
551 B
YAML
23 lines
551 B
YAML
# container settings
|
|
gitea_name: gitea
|
|
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
|
|
|
|
# database settings
|
|
gitea_dbtype: mysql
|
|
gitea_dbhost: host.docker.internal
|
|
gitea_dbname: "{{ gitea_name }}"
|
|
gitea_dbuser: "{{ gitea_name }}"
|
|
|
|
# proxy settings
|
|
gitea_proxy_limit: "1"
|
|
gitea_trusted_proxies: "172.16.0.0/12"
|
|
|
|
# host
|
|
gitea_root: "{{ docker_compose_root }}/{{ gitea_name }}"
|