From eb3ec0b0837f845c230ec743ddd796fb830829d2 Mon Sep 17 00:00:00 2001 From: Wayne Witzel III Date: Fri, 14 Oct 2016 02:00:56 -0400 Subject: [PATCH] daphne should listen on 0.0.0.0 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f6b26e8403..54818ad6eb 100644 --- a/Makefile +++ b/Makefile @@ -397,7 +397,7 @@ daphne: @if [ "$(VENV_BASE)" ]; then \ . $(VENV_BASE)/tower/bin/activate; \ fi; \ - daphne -b 127.0.0.1 -p 8051 awx.asgi:channel_layer + daphne -b 0.0.0.0 -p 8051 awx.asgi:channel_layer runworker: @if [ "$(VENV_BASE)" ]; then \