glider/examples
2017-07-31 13:42:11 +08:00
..
forward_chain fixed a mistake in config example 2017-07-30 13:04:57 +08:00
multiple_forwarders proxy chek: 1. improve check method: send a http get request and check the response, if the first 4 byte is "HTTP" then the proxy is avaliable. 2. if a proxy is disabled, increase the check duration. 3. update related docs. 2017-07-31 13:42:11 +08:00
one_forwarder add some example configs 2017-07-30 11:44:34 +08:00
rule_default_direct proxy chek: 1. improve check method: send a http get request and check the response, if the first 4 byte is "HTTP" then the proxy is avaliable. 2. if a proxy is disabled, increase the check duration. 3. update related docs. 2017-07-31 13:42:11 +08:00
rule_default_forwarder proxy chek: 1. improve check method: send a http get request and check the response, if the first 4 byte is "HTTP" then the proxy is avaliable. 2. if a proxy is disabled, increase the check duration. 3. update related docs. 2017-07-31 13:42:11 +08:00
rule_multiple_rule_files proxy chek: 1. improve check method: send a http get request and check the response, if the first 4 byte is "HTTP" then the proxy is avaliable. 2. if a proxy is disabled, increase the check duration. 3. update related docs. 2017-07-31 13:42:11 +08:00
simple_proxy_service add some example configs 2017-07-30 11:44:34 +08:00
README.md add some example configs 2017-07-30 11:44:34 +08:00

Glider Configuration Examples

Simple Proxy Service

Just listen on 8443 as HTTP/SOCKS5 proxy on the same port, forward all requests directly.

   Clients --> Listener --> Internet

One remote upstream proxy

   Clients --> Listener --> Forwarder -->  Internet

One remote upstream PROXY CHAIN

   Clients -->  Listener --> Forwarder1 --> Forwarder2 -->  Internet

Multiple upstream proxies

                            |Forwarder ----------------->|         
   Clients --> Listener --> |                            | Internet
                            |Forwarder --> Forwarder->...| 

With Rule File: Default Direct, Rule file use forwarder

Default:

   Clients --> Listener --> Internet

Destinations specified in rule file:

                             |Forwarder ----------------->|         
   Clients -->  Listener --> |                            | Internet
                             |Forwarder --> Forwarder->...| 

With Rule File: Default use forwarder, rule file use direct

Default:

                             |Forwarder ----------------->|         
   Clients -->  Listener --> |                            | Internet
                             |Forwarder --> Forwarder->...| 

Destinations specified in rule file:

   Clients --> Listener --> Internet

With Rule File: multiple rule files

Default:

   Clients --> Listener --> Internet

Destinations specified in rule file1:

                             |Forwarder1 ----------------->|         
   Clients -->  Listener --> |                            | Internet
                             |Forwarder2 --> Forwarder3->...| 

Destinations specified in rule file2:

                             |Forwarder4 ----------------->|         
   Clients -->  Listener --> |                            | Internet
                             |Forwarder5 --> Forwarder6->...|