Add variable fusioninventory__agent_conf_httpd_trust
This commit is contained in:
parent
1034027b1b
commit
d74329160c
|
@ -1,3 +1,8 @@
|
|||
## vX.Y.Z
|
||||
|
||||
### Fix
|
||||
* Fix Manage trust requests without authentication token (#1)
|
||||
|
||||
## v1.0.2
|
||||
|
||||
### Fix
|
||||
|
|
|
@ -195,6 +195,15 @@ fusioninventory__agent_conf_httpd_ip: ''
|
|||
#
|
||||
fusioninventory__agent_conf_httpd_port: '62354'
|
||||
|
||||
# ]]]
|
||||
# .. envvar:: fusioninventory__agent_conf_httpd_trust: [[[
|
||||
#
|
||||
# hostname or IP or subnet authorized for http request :
|
||||
#
|
||||
# ````
|
||||
# Default.
|
||||
#
|
||||
fusioninventory__agent_conf_httpd_trust: ''
|
||||
# ]]]
|
||||
# .. envvar:: fusioninventory__agent_conf_debug [[[
|
||||
#
|
||||
|
|
|
@ -119,7 +119,7 @@ httpd-ip = {{ fusioninventory__agent_conf_httpd_ip }}
|
|||
# network port to listen to
|
||||
httpd-port = {{ fusioninventory__agent_conf_httpd_port }}
|
||||
# trust requests without authentication token
|
||||
httpd-trust =
|
||||
httpd-trust = {{ fusioninventory__agent_conf_httpd_trust }}
|
||||
|
||||
#
|
||||
# Logging options
|
||||
|
|
Reference in New Issue