listen on 127.0.0.1 instead of 'localhost'

This commit is contained in:
Albert S. 2018-11-05 22:34:59 +01:00
parent ebdb71343c
commit bcf9d605d2
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}