[REQUEST] HTTP & TCP Proxy Host

Johnn

New Member
May 25, 2014
2
0
Hello DevBest,
I am looking for a good/trusted Host which is selling proxies, comment bellow if you know any I prefer non retros related.
 
Last edited:

Data

Posting Freak
May 19, 2013
593
97
Here is a haproxy config example(Incase you want to use Haproxy for a HTTP proxy & TCP proxy not just TCP
Code:
global
    log 127.0.0.1 local0
    log 127.0.0.1 local1 notice
    maxconn 4096
    user haproxy
    group haproxy
    daemon
defaults
    log global
    mode http
    option httplog
    option dontlognull
    retries 3
    option redispatch
    maxconn 2000
    contimeout 5000
    clitimeout 50000
    srvtimeout 50000
frontend http-in
    bind *:80
    acl is_www_example_com hdr_end(host) -i example.com
    acl is_www_domain_com hdr_end(host) -i domain.com
   
    use_backend www_example_com if is_www_example_com
    use_backend www_domain_com if is_www_domain_com
    default_backend www_example_com
backend www_example_com
    balance roundrobin
    cookie SERVERID insert nocache indirect
    option httpchk HEAD /check.txt HTTP/1.0
    option httpclose
    option forwardfor
    server Server1 10.1.1.1:80 cookie Server1
    server Server2 10.1.1.2:80 cookie Server2
backend www_domain_com
    balance roundrobin
    cookie SERVERID insert nocache indirect
    option httpchk HEAD /check.txt HTTP/1.0
    option httpclose
    option forwardfor
    server Server1 192.168.5.1:80 cookie Server1
    server Server2 192.168.5.2:80 cookie Server2

127.0.0.1 -> your server IP
 

Data

Posting Freak
May 19, 2013
593
97
Or do what I said if your getting huge traffic if your getting 15-75 users your alright with XZNetworks or another shared provider.
 

Users who are viewing this thread

Top