From 7c7f7a02180ac56a0732455a737cde87f2bebb57 Mon Sep 17 00:00:00 2001 From: haxala1r Date: Sun, 20 Jul 2025 01:44:27 +0300 Subject: [PATCH] Revert "version 2 for today" This reverts commit 894fe537252bc11cbc21804be76a84b71d1e9487. This needs to be done because the api is expected to run on port 80, not 8080. --- faafo/faafo/api/service.py | 2 +- faafo/faafo/worker/service.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/faafo/faafo/api/service.py b/faafo/faafo/api/service.py index eedf60a..49c2a55 100644 --- a/faafo/faafo/api/service.py +++ b/faafo/faafo/api/service.py @@ -48,7 +48,7 @@ api_opts = [ default='0.0.0.0', help='Listen address.'), cfg.IntOpt('bind-port', - default='8080', + default='80', help='Bind port.'), cfg.StrOpt('database-url', default='sqlite:////tmp/sqlite.db', diff --git a/faafo/faafo/worker/service.py b/faafo/faafo/worker/service.py index a24d6d0..18d1017 100644 --- a/faafo/faafo/worker/service.py +++ b/faafo/faafo/worker/service.py @@ -39,7 +39,7 @@ CONF = cfg.CONF worker_opts = [ cfg.StrOpt('endpoint-url', - default='http://localhost:8080', + default='http://localhost', help='API connection URL') ]