diff --git a/faafo/faafo/api/service.py b/faafo/faafo/api/service.py index 74ef9c8..08727a8 100644 --- a/faafo/faafo/api/service.py +++ b/faafo/faafo/api/service.py @@ -43,7 +43,7 @@ api_opts = [ default='0.0.0.0', help='Listen address.'), cfg.IntOpt('bind-port', - default='80', + default='8080', 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 18d1017..a24d6d0 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', + default='http://localhost:8080', help='API connection URL') ]