diff options
author | John Estabrook <jestabro@vyos.io> | 2021-12-10 14:41:23 -0600 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2021-12-14 09:53:35 -0600 |
commit | 1b0007a01fd541b5f31ed94518e786a998bd6f43 (patch) | |
tree | 6e65e64f79a6f97fc1ca3667f468ba129ac0154b /src/conf_mode/https.py | |
parent | ce2b74fbcd5718a88bcaa26e1aa2b31549fcc5bb (diff) | |
download | vyos-1x-1b0007a01fd541b5f31ed94518e786a998bd6f43.tar.gz vyos-1x-1b0007a01fd541b5f31ed94518e786a998bd6f43.zip |
http-api: T4071: allow API to bind to unix domain socket
(cherry picked from commit 0e3c35e6517f5cfebb4206c735a2ea976a7fd383)
Diffstat (limited to 'src/conf_mode/https.py')
-rwxr-xr-x | src/conf_mode/https.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/conf_mode/https.py b/src/conf_mode/https.py index 05f245509..96c50b4b5 100755 --- a/src/conf_mode/https.py +++ b/src/conf_mode/https.py @@ -123,6 +123,8 @@ def get_config(config=None): vhosts = https_dict.get('api-restrict', {}).get('virtual-host', []) if vhosts: api_data['vhost'] = vhosts[:] + if 'socket' in list(api_settings): + api_data['socket'] = True if api_data: vhost_list = api_data.get('vhost', []) |