Revert "version 2 for today"

This reverts commit 894fe53725.
This needs to be done because the api is expected to run on port 80, not
8080.
This commit is contained in:
2025-07-20 01:44:27 +03:00
committed by Emin Arslan
parent f63c204b12
commit 7c7f7a0218
2 changed files with 2 additions and 2 deletions

View File

@ -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',

View File

@ -39,7 +39,7 @@ CONF = cfg.CONF
worker_opts = [
cfg.StrOpt('endpoint-url',
default='http://localhost:8080',
default='http://localhost',
help='API connection URL')
]