diff options
author | John Estabrook <jestabro@sentrium.io> | 2019-08-27 08:13:02 -0500 |
---|---|---|
committer | John Estabrook <jestabro@sentrium.io> | 2019-08-27 08:13:02 -0500 |
commit | 1ace4a35237889bceff7309df0c687bf32ab89a9 (patch) | |
tree | 03354cc8a05914543f29cb61ddb387972e360553 /python | |
parent | 93184326fc3768216b734a5fcc60e193b5e27fad (diff) | |
download | vyos-1x-1ace4a35237889bceff7309df0c687bf32ab89a9.tar.gz vyos-1x-1ace4a35237889bceff7309df0c687bf32ab89a9.zip |
[service https] T1443: Correct the use of listen/server_name directives
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/defaults.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/defaults.py b/python/vyos/defaults.py index 3e4c02562..85d27d60d 100644 --- a/python/vyos/defaults.py +++ b/python/vyos/defaults.py @@ -29,7 +29,7 @@ cfg_vintage = 'vyatta' commit_lock = '/opt/vyatta/config/.lock' https_data = { - 'listen_address' : [ '127.0.0.1' ] + 'listen_addresses' : { '*': ['_'] } } api_data = { |