The `gitea_ssh_domain` and `gitea_http_domain` variables can be used to configure the host portion of the URLs for cloning Git repositories over SSH and HTTPS, respectively. By default, both values are the FQDN of the machine hosting Gitea.
4 lines
138 B
YAML
4 lines
138 B
YAML
gitea_ssh_domain: '{{ ansible_fqdn }}'
|
|
gitea_http_domain: '{{ gitea_ssh_domain }}'
|
|
gitea_root_url: 'http://{{ gitea_http_domain }}:3000/'
|