Skip to content

Instantly share code, notes, and snippets.

@geekish
Created January 10, 2020 02:27
Show Gist options
  • Save geekish/6e950356919b4902b096bbd0c901806f to your computer and use it in GitHub Desktop.
Save geekish/6e950356919b4902b096bbd0c901806f to your computer and use it in GitHub Desktop.
Gitea LaunchAgent
<?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>io.gitea.web</string>
<key>ProgramArguments</key>
<array>
<string>sh</string>
<string>-c</string>
<string>/usr/local/bin/gitea web --port 3080 --config /usr/local/etc/gitea.ini</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>WorkingDirectory</key>
<string>/usr/local</string>
<key>StandardOutPath</key>
<string>/usr/local/var/log/gitea.log</string>
<key>StandardErrorPath</key>
<string>/usr/local/var/log/gitea.error.log</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment