All Questions
2 questions
0
votes
1
answer
321
views
http forward with domain blocking
I'm trying to implement a http forwarding server that supports domain blocking. I've tried
go io.Copy(dst, src)
go io.Copy(src, dst)
and it works like a charm on tcp forwarding. Then I've tried to do ...
0
votes
0
answers
269
views
Forward HTTP traffic with erlang
I want to write a "smart" load balancer, with "smart" I mean that it should route different request on different servers and ports based on the URL.
As example somehost.com/server1 should go to the ...