com.ngrok.client.plist 776 B

123456789101112131415161718192021222324
  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>/Users/djimenez/Library/Logs/ngrok.log</string>
  19. <string>-subdomain</string>
  20. <string>mySubDomain</string>
  21. <string>80</string>
  22. </array>
  23. </dict>
  24. </plist>