diff options
author | John Estabrook <jestabro@vyos.io> | 2023-03-29 19:48:52 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2023-03-31 12:14:56 -0500 |
commit | 11b1d043310833447ddeea3b68fba2a1d1f5799d (patch) | |
tree | 2789494d62355cdd0648a0084b7a97aa70d8bea1 /src/conf_mode/https.py | |
parent | 11ace86f58261908f1ab15366b73aeddb14745c9 (diff) | |
download | vyos-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-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 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 |