diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-21 20:25:59 +0100 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2023-11-22 05:51:05 +0000 |
commit | 92a75196e5a0d9568905f1c990a080cc4e1e0ea9 (patch) | |
tree | 9072da20295d86482d94a864f961e57a869cfd56 /python | |
parent | d908073cac14539ba54665715ab84a5bf40662ad (diff) | |
download | vyos-1x-92a75196e5a0d9568905f1c990a080cc4e1e0ea9.tar.gz vyos-1x-92a75196e5a0d9568905f1c990a080cc4e1e0ea9.zip |
http: T5762: rename "virtual-host listen-port" -> "virtual-host port"
This complements commit f5e43b136 ("http: T5762: api: make API socket backend
communication the one and only default") so we have a consistent port CLI node
across VyOS components.
(cherry picked from commit 0e885f1bf01424130b6876e769cc42612b19351b)
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/defaults.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/python/vyos/defaults.py b/python/vyos/defaults.py index a229533bd..b7f39ecb0 100644 --- a/python/vyos/defaults.py +++ b/python/vyos/defaults.py @@ -51,9 +51,6 @@ https_data = { } api_data = { - 'listen_address' : '127.0.0.1', - 'port' : '8080', - 'socket' : False, 'strict' : False, 'debug' : False, 'api_keys' : [ {'id' : 'testapp', 'key' : 'qwerty'} ] |