forked from ginhom/dnscrypt-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
org.dnscrypt.osx.DNSCryptProxy.plist
31 lines (28 loc) · 1.06 KB
/
org.dnscrypt.osx.DNSCryptProxy.plist
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-/Apple/DTD PLIST 1.0/EN" "http:/www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.dnscrypt.osx.DNSCryptProxy</string>
<key>KeepAlive</key>
<true/>
<key>RunAtLoad</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>--user=nobody</string>
<!-- You might want to change this on iOS or if you installed the proxy in a specific location -->
<string>/usr/local/sbin/dnscrypt-proxy</string>
<!-- You might want to change this on iOS or if you installed the proxy in a specific location -->
<string>--resolvers-list=/usr/local/share/dnscrypt-proxy/dnscrypt-resolvers.csv</string>
<!-- Change this to the provider name you want to use -->
<string>--resolver-name=***CHANGETHIS***</string>
</array>
<key>StandardErrorPath</key>
<string>/dev/null</string>
<key>StandardOutPath</key>
<string>/dev/null</string>
<key>UserName</key>
<string>root</string>
</dict>
</plist>