diff options
| author | John Estabrook <jestabro@vyos.io> | 2021-12-10 14:41:23 -0600 |
|---|---|---|
| committer | John Estabrook <jestabro@vyos.io> | 2021-12-13 11:20:00 -0600 |
| commit | 0e3c35e6517f5cfebb4206c735a2ea976a7fd383 (patch) | |
| tree | a11a590051ad67a7ba866587d599322a06069998 /src/conf_mode/https.py | |
| parent | 92c4cc5e1248b3c7ffda03e23eeb21e2073ba7f0 (diff) | |
| download | veeos-1x-0e3c35e6517f5cfebb4206c735a2ea976a7fd383.tar.gz veeos-1x-0e3c35e6517f5cfebb4206c735a2ea976a7fd383.zip | |
http-api: T4071: allow API to bind to unix domain socket
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 cd5073aa2..053ee5d4a 100755 --- a/src/conf_mode/https.py +++ b/src/conf_mode/https.py @@ -191,6 +191,8 @@ def generate(https): vhosts = https.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', []) |
