Skip to content

Instantly share code, notes, and snippets.

@lewangdev
Last active February 26, 2020 07:41
Show Gist options
  • Save lewangdev/e2db85a0e7c2626b80509a92730fd351 to your computer and use it in GitHub Desktop.
Save lewangdev/e2db85a0e7c2626b80509a92730fd351 to your computer and use it in GitHub Desktop.
launch-gost
# Load
launchctl load -w ~/Library/LaunchAgents/gost.plist
# Unload
launchctl unload -w ~/Library/LaunchAgents/gost.plist
{
"Retries": 1,
"Debug": false,
"ServeNodes": [
"ss://chacha20:[email protected]:1998"
],
"ChainNodes": [
"https://admin:[email protected]:8443"
]
}
<?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>gost.plist</string>
<key>ProgramArguments</key>
<array>
<string>/opt/gost/bin/gost</string>
<string>-C</string>
<string>/opt/gost/etc/gost.json</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>WorkingDirectory</key>
<string>/opt/gost</string>
<key>StandardErrorPath</key>
<string>/opt/gost/log/gost.log</string>
<key>StandardOutPath</key>
<string>/opt/gost/log/gost.log</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment