add host property to config

main
qwertyforce 2023-07-05 19:14:43 +03:00
parent 8ccb814923
commit e5eebef7b1
3 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,6 @@
export default {
server_port:44444,
host:"127.0.0.1",
local_features_microservice_url:"http://127.0.0.1:33333",
global_features_microservice_url:"http://127.0.0.1:33334",
color_microservice_url:"http://127.0.0.1:33335",

View File

@ -1,5 +1,6 @@
export default {
server_port:44444,
host:"0.0.0.0",
local_features_microservice_url:"http://local_features_web:33333",
global_features_microservice_url:"http://global_features_web:33334",
color_microservice_url:"http://color_web:33335",

View File

@ -148,7 +148,7 @@ server.post("/get_image_caption", (_req, res) => {
})
////////////////////////////////////////////////////////////////////////////////////////////////////////////
server.listen({port:port, host:"0.0.0.0"}, function (err, address) {
server.listen({port:port, host:config.host}, function (err, address) {
if (err) {
console.error(err)
process.exit(1)