listen on 127.0.0.1 instead of 'localhost'

Este commit está contenido en:
Albert S. 2018-11-05 22:34:59 +01:00
padre ebdb71343c
commit bcf9d605d2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -89,5 +89,5 @@ void HttpGateway::work(RequestWorker &worker)
};
server.Get("/(.*)", handler);
server.Post("/(.*)", handler);
server.listen("localhost", 1234);
server.listen("127.0.0.1", 1234);
}