com.ngrok.client.plist 868 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. This is an example launchd script for MacOS. It was written under 10.9.1.
  4. You'll have to modify some arguments below to get this working on your box.
  5. Unfortunetly I was unable to get any environment variables working in the launchd script.
  6. -->
  7. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  8. <plist version="1.0">
  9. <dict>
  10. <key>KeepAlive</key>
  11. <true/>
  12. <key>Label</key>
  13. <string>com.ngrok.client</string>
  14. <key>ProgramArguments</key>
  15. <array>
  16. <string>/usr/local/bin/ngrok</string>
  17. <string>-log</string>
  18. <string>stdout</string>
  19. <string>-subdomain</string>
  20. <string>mySubDomain</string>
  21. <string>80</string>
  22. </array>
  23. <key>StandardOutPath</key>
  24. <string>/tmp/ngrok.log</string>
  25. <key>StandardErrorPath</key>
  26. <string>/tmp/ngrok.log</string>
  27. </dict>
  28. </plist>