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') ]