mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-19 19:46:38 +08:00
23 lines
641 B
INI
23 lines
641 B
INI
[autocloud]
|
|
{% if env == 'staging' %}
|
|
koji_server_url = http://koji.fedoraproject.org/kojihub/
|
|
base_koji_task_url = https://kojipkgs.fedoraproject.org//work/
|
|
{% else %}
|
|
koji_server_url = http://koji.stg.fedoraproject.org/kojihub/
|
|
base_koji_task_url = https://kojipkgs.stg.fedoraproject.org//work/
|
|
{% endif %}
|
|
|
|
virtualbox = false
|
|
debug = false
|
|
|
|
# These are required, but are ignored when run under mod_wsgi.
|
|
host = 0.0.0.0
|
|
port = 5000
|
|
|
|
[sqlalchemy]
|
|
{% if env == 'staging' %}
|
|
uri = postgres://autocloud:{{autocloud_db_password_stg}}@db01.stg/autocloud
|
|
{% else %}
|
|
uri = postgres://autocloud:{{autocloud_db_password}}@db01/autocloud
|
|
{% endif %}
|