mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-02-13 18:15:00 +08:00
28 lines
995 B
Python
28 lines
995 B
Python
config = {
|
|
# Talk to the relay, so things also make it to composer.stg in our dev env
|
|
"active": True,
|
|
|
|
# Since we're in active mode, we don't need to declare any of our own
|
|
# passive endpoints. This placeholder value needs to be here for the tests
|
|
# to pass in Jenkins, though. \o/
|
|
"endpoints": {},
|
|
"relay_inbound": ["tcp://127.0.0.1:2003"],
|
|
|
|
# Start of code signing configuration
|
|
# 'sign_messages': True,
|
|
# 'validate_signatures': True,
|
|
# 'crypto_backend': 'x509',
|
|
# 'crypto_validate_backends': ['x509'],
|
|
# 'ssldir': '/opt/fm-orchestrator/pki',
|
|
# 'crl_location': 'http://localhost/crl/ca.crl',
|
|
# 'crl_cache': '/etc/pki/fedmsg/crl.pem',
|
|
# 'crl_cache_expiry': 10,
|
|
# 'ca_cert_location': 'http://localhost/crl/ca.crt',
|
|
# 'ca_cert_cache': '/etc/pki/fedmsg/ca.crt',
|
|
# 'ca_cert_cache_expiry': 0, # Never expires
|
|
# 'certnames': {
|
|
# 'rida.localhost': 'localhost'
|
|
# }
|
|
# End of code signing configuration
|
|
}
|