-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproxifier.template
44 lines (44 loc) · 1.58 KB
/
proxifier.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ProxifierProfile version="101" platform="MacOSX" product_id="2" product_minver="200">
<Options>
<Resolve>
<AutoModeDetection enabled="false"/>
<ViaProxy enabled="true">
<TryLocalDnsFirst enabled="false"/>
</ViaProxy>
<ExclusionList ExcludeSimpleHostnames="true" ExcludeLocalhost="true" ExcludeSelfHostname="true" ExcludeLocalDomain="true">localhost;%SimpleHostnames%;%ComputerName%;*.local;
</ExclusionList>
</Resolve>
<Encryption mode="basic"/>
<HttpProxiesSupport enabled="false"/>
<HandleDirectConnections enabled="true"/>
<ConnectionLoopDetection enabled="true"/>
<ProcessServices enabled="true"/>
<ProcessOtherUsers enabled="true"/>
</Options>
<ProxyList>
<Proxy id="100" type="SOCKS5">
<Address>{{PROXY_ADDRESS}}</Address>
<Port>8080</Port>
<Options>0</Options>
</Proxy>
</ProxyList>
<ChainList/>
<RuleList>
<Rule enabled="true">
<Name>Localhost</Name>
<Targets>localhost; 127.0.0.1; ::1; %ComputerName%</Targets>
<Action type="Direct"/>
</Rule>
<Rule enabled="true">
<Name>New</Name>
<Targets>{{PROXY_ADDRESS}}</Targets>
<Ports>8080</Ports>
<Action type="Direct"/>
</Rule>
<Rule enabled="true">
<Name>Default</Name>
<Action type="Proxy">100</Action>
</Rule>
</RuleList>
</ProxifierProfile>