summaryrefslogtreecommitdiff
path: root/src/services
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2023-12-20 19:51:34 +0000
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2023-12-20 20:02:52 +0000
commitfdf8011559b2ee6208155876c554bac77f5693c7 (patch)
tree91eedec3bf573de0374081b98186fd2b74ab5af0 /src/services
parent59c2d8333db9be0ea2e9bc448ac189568bf7475a (diff)
downloadvyos-1x-fdf8011559b2ee6208155876c554bac77f5693c7.tar.gz
vyos-1x-fdf8011559b2ee6208155876c554bac77f5693c7.zip
https api: T5844: allow the server to start without API keys
and use only PAM auth and JWT (cherry picked from commit 495bf4732439ebd55edfbf6050af8b2064993d86)
Diffstat (limited to 'src/services')
-rwxr-xr-xsrc/services/vyos-http-api-server6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/services/vyos-http-api-server b/src/services/vyos-http-api-server
index bfd50cc80..b64e58132 100755
--- a/src/services/vyos-http-api-server
+++ b/src/services/vyos-http-api-server
@@ -872,13 +872,15 @@ def initialization(session: ConfigSession, app: FastAPI = app):
global server
try:
server_config = load_server_config()
- keys = flatten_keys(server_config)
except Exception as e:
logger.critical(f'Failed to load the HTTP API server config: {e}')
sys.exit(1)
app.state.vyos_session = session
- app.state.vyos_keys = keys
+ app.state.vyos_keys = []
+
+ if 'keys' in server_config:
+ app.state.vyos_keys = flatten_keys(server_config)
app.state.vyos_debug = bool('debug' in server_config)
app.state.vyos_strict = bool('strict' in server_config)