diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-08-15 01:03:06 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-15 01:03:06 +0700 |
commit | 58c5a7e668d0131de50e6f9711f029f9ff4a02ab (patch) | |
tree | 9954f9f8d20032a26d6ae0d5601693c80fd01771 /src/conf_mode/http-api.py | |
parent | 8d1e768a6f3285ed717f588f356db9340871b043 (diff) | |
parent | e304e91a781f79c1e12bb2a7f806a0015bf039e3 (diff) | |
download | vyos-1x-58c5a7e668d0131de50e6f9711f029f9ff4a02ab.tar.gz vyos-1x-58c5a7e668d0131de50e6f9711f029f9ff4a02ab.zip |
Merge pull request #103 from jestabro/service-https
[service https] T1443: add self-signed TLS certificate
Diffstat (limited to 'src/conf_mode/http-api.py')
-rwxr-xr-x | src/conf_mode/http-api.py | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/conf_mode/http-api.py b/src/conf_mode/http-api.py index c1d596ea3..1f91ac582 100755 --- a/src/conf_mode/http-api.py +++ b/src/conf_mode/http-api.py @@ -27,14 +27,6 @@ from vyos import ConfigError config_file = '/etc/vyos/http-api.conf' -default_config_data = { - 'listen_address' : '127.0.0.1', - 'port' : '8080', - 'strict' : 'false', - 'debug' : 'false', - 'api_keys' : [ {"id": "testapp", "key": "qwerty"} ] -} - vyos_conf_scripts_dir=vyos.defaults.directories['conf_mode'] # XXX: this model will need to be extended for tag nodes @@ -43,7 +35,8 @@ dependencies = [ ] def get_config(): - http_api = default_config_data + http_api = vyos.defaults.api_data + conf = Config() if not conf.exists('service https api'): return None |