summaryrefslogtreecommitdiff
path: root/src/conf_mode/https.py
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2023-03-29 19:48:52 -0500
committerJohn Estabrook <jestabro@vyos.io>2023-03-31 12:14:56 -0500
commit11b1d043310833447ddeea3b68fba2a1d1f5799d (patch)
tree2789494d62355cdd0648a0084b7a97aa70d8bea1 /src/conf_mode/https.py
parent11ace86f58261908f1ab15366b73aeddb14745c9 (diff)
downloadvyos-1x-11b1d043310833447ddeea3b68fba2a1d1f5799d.tar.gz
vyos-1x-11b1d043310833447ddeea3b68fba2a1d1f5799d.zip
http-api: T5126: allow restricting client IP address
Diffstat (limited to 'src/conf_mode/https.py')
-rwxr-xr-xsrc/conf_mode/https.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/conf_mode/https.py b/src/conf_mode/https.py
index ce5e63928..b0c38e8d3 100755
--- a/src/conf_mode/https.py
+++ b/src/conf_mode/https.py
@@ -159,6 +159,8 @@ def generate(https):
server_block['port'] = data.get('listen-port', '443')
name = data.get('server-name', ['_'])
server_block['name'] = name
+ allow_client = data.get('allow-client', {})
+ server_block['allow_client'] = allow_client.get('address', [])
server_block_list.append(server_block)
# get certificate data