diff options
Diffstat (limited to 'ironic_python_agent/api/config.py')
| -rw-r--r-- | ironic_python_agent/api/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ironic_python_agent/api/config.py b/ironic_python_agent/api/config.py index 0b5ee634..8dc06247 100644 --- a/ironic_python_agent/api/config.py +++ b/ironic_python_agent/api/config.py @@ -12,11 +12,13 @@ # See the License for the specific language governing permissions and # limitations under the License. +from ironic_python_agent import netutils + # Server Specific Configurations # See https://pecan.readthedocs.org/en/latest/configuration.html#server-configuration # noqa server = { 'port': '9999', - 'host': '0.0.0.0' + 'host': netutils.get_wildcard_address() } # Pecan Application Configurations |
