You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
776 B
25 lines
776 B
gitea:
|
|
hosts:
|
|
# This is the domain name for SSH connection from ansible
|
|
git.modfoss.com:
|
|
# This is the domain name for use in all configuration (nginx, gitea, etc)
|
|
domain_name: git.modfoss.com
|
|
# This database information will be used to create a PSQL database,
|
|
# and to configure gitea to connect to it.
|
|
database:
|
|
name: gitea
|
|
user: gitea
|
|
pass: ReallyLongDatabasePassword
|
|
# This admin account will be made on the web interface
|
|
gitea:
|
|
user: yourfirstuser
|
|
email: you@domain.com
|
|
pass: WhateverPasswordYouWant
|
|
# Add your SMTP credentials for email
|
|
smtp:
|
|
host: your.smtp.host.com
|
|
from: your@provider.com
|
|
user: auth_user
|
|
pass: auth_pass
|
|
|
|
|
|
|