diff options
author | John Estabrook <jestabro@vyos.io> | 2021-12-13 11:47:12 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-13 11:47:12 -0600 |
commit | 88c38dda4b872d2108156b56538302f4c5058a7e (patch) | |
tree | 61022da45ce9cbba1865ec36c29ef546cbbf8ee0 /python | |
parent | 9191455f1d563f34f709b3021fc01b37755201b3 (diff) | |
parent | 0e3c35e6517f5cfebb4206c735a2ea976a7fd383 (diff) | |
download | vyos-1x-88c38dda4b872d2108156b56538302f4c5058a7e.tar.gz vyos-1x-88c38dda4b872d2108156b56538302f4c5058a7e.zip |
Merge pull request #1105 from jestabro/uds
http-api: T4071: allow API to bind to unix domain socket
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/defaults.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/vyos/defaults.py b/python/vyos/defaults.py index f355c4919..c77b695bd 100644 --- a/python/vyos/defaults.py +++ b/python/vyos/defaults.py @@ -46,8 +46,9 @@ https_data = { api_data = { 'listen_address' : '127.0.0.1', 'port' : '8080', - 'strict' : 'false', - 'debug' : 'false', + 'socket' : False, + 'strict' : False, + 'debug' : False, 'api_keys' : [ {"id": "testapp", "key": "qwerty"} ] } |