ailistener-old

The central Server which transports webhook events from the Dialogflow bot to the local nodes
git clone git://archive.git.mtrnord.blog/OpenHomeAuto/ailistener-old.git
Log | Files | Refs | README | LICENSE

commit 81abf20e1109084e251326c10b44e16d032b166b
parent b5c45513651a6830f6c3aa7cc3b265775b43a9e8
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat,  2 Jun 2018 10:38:23 +0200

Make the server not claim 80 for now

Diffstat:
MwsListener/server.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wsListener/server.go b/wsListener/server.go @@ -13,7 +13,7 @@ func Main() { r := mux.NewRouter() r.HandleFunc("/", HomeHandler).Methods("GET") r.HandleFunc("/dialogflow", DFHandler).Methods("POST") - http.ListenAndServe(":80", r) + http.ListenAndServe(":400", r) } func HomeHandler(w http.ResponseWriter, r *http.Request) {