mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-02-11 09:05:00 +08:00
Allow configurable host and port for rida.py
This commit is contained in:
@@ -9,6 +9,10 @@ pdc_insecure = True
|
||||
pdc_develop = True
|
||||
scmurls = ["git://pkgs.stg.fedoraproject.org/modules/"]
|
||||
|
||||
# Where we should run when running rida.py directly.
|
||||
host = 127.0.0.1
|
||||
port = 5000
|
||||
|
||||
# How often should we resort to polling, in seconds
|
||||
# Set to zero to disable polling
|
||||
polling_interval = 60
|
||||
|
||||
7
rida.py
7
rida.py
@@ -190,4 +190,9 @@ def _establish_ssl_context(conf):
|
||||
if __name__ == "__main__":
|
||||
logging.info("Starting Rida")
|
||||
ssl_ctx = _establish_ssl_context(conf)
|
||||
app.run(request_handler = rida.auth.ClientCertRequestHandler, ssl_context=ssl_ctx)
|
||||
app.run(
|
||||
host=conf.host,
|
||||
port=conf.port,
|
||||
request_handler=rida.auth.ClientCertRequestHandler,
|
||||
ssl_context=ssl_ctx,
|
||||
)
|
||||
|
||||
@@ -75,6 +75,9 @@ def from_file(filename=None):
|
||||
conf.rpms_default_cache = default.get("rpms_default_cache")
|
||||
conf.rpms_allow_cache = asbool(default.get("rpms_allow_cache"))
|
||||
|
||||
conf.port = default.get("port")
|
||||
conf.host = default.get("host")
|
||||
|
||||
conf.ssl_certificate_file = default.get("ssl_certificate_file")
|
||||
conf.ssl_certificate_key_file = default.get("ssl_certificate_key_file")
|
||||
conf.ssl_ca_certificate_file = default.get("ssl_ca_certificate_file")
|
||||
|
||||
Reference in New Issue
Block a user