Skip to content

Commit e61c2c8

Browse files
committed
have http rpc server listen on all interfaces
1 parent 4b64f75 commit e61c2c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/http_rpc_server.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ function run_http(httprpc::HttpRpcServer{T,F}, port::Int; kwargs...) where {T,F}
250250
else
251251
Logging.debug("running HTTP RPC server...")
252252
end
253-
HTTP.listen(ip"127.0.0.1", port; kwargs...) do req::HTTP.Request
253+
HTTP.listen(ip"0.0.0.0", port; kwargs...) do req::HTTP.Request
254254
HTTP.handle(httprpc.handler, req)
255255
end
256256
end

0 commit comments

Comments
 (0)