From 059c32f193dd4985c3edc13f4ad64a79ad60f919 Mon Sep 17 00:00:00 2001 From: Fabio Verboso Date: Wed, 6 Feb 2019 16:57:39 +0100 Subject: [PATCH] Fix the bug of the redirect on nginx proxy. Change-Id: Ie331f2b730ac7aae339ac1026f68ef61074607a2 --- iotronic/conductor/endpoints.py | 1 + 1 file changed, 1 insertion(+) diff --git a/iotronic/conductor/endpoints.py b/iotronic/conductor/endpoints.py index 01bf11c..d13decc 100644 --- a/iotronic/conductor/endpoints.py +++ b/iotronic/conductor/endpoints.py @@ -737,6 +737,7 @@ class ConductorEndpoint(object): cctx = self.wamp_agent_client.prepare(server=board.agent) cctx.call(ctx, 'enable_webservice', board=dns, https_port=https_port, http_port=http_port, zone=zone) + cctx.call(ctx, 'reload_proxy') LOG.debug('Configure Web Proxy on Board %s with dns %s (email: %s) ', board.uuid, dns, email)