summaryrefslogtreecommitdiffstats
path: root/scripts/launchd/io.gitea.web.plist
diff options
context:
space:
mode:
authorThomas Boerger <thomas@webhippie.de>2017-03-15 13:30:00 +0100
committerGitHub <noreply@github.com>2017-03-15 13:30:00 +0100
commita06c3ad2c02a5473184711be6dbf1b30f0299e11 (patch)
treece0ac065a6afa843ce298d00d1761b5cf48accf9 /scripts/launchd/io.gitea.web.plist
parent09fe4a2ae9dfa8b3bc8a5039d0feab1e1a34d07b (diff)
downloadgitea-a06c3ad2c02a5473184711be6dbf1b30f0299e11.tar.gz
gitea-a06c3ad2c02a5473184711be6dbf1b30f0299e11.zip
Synced gitignores with github repo (#1245)
* Renamed scripts directory into contrib * Added script to download gitignores from github * Synced gitignores with github repo
Diffstat (limited to 'scripts/launchd/io.gitea.web.plist')
-rw-r--r--scripts/launchd/io.gitea.web.plist39
1 files changed, 0 insertions, 39 deletions
diff --git a/scripts/launchd/io.gitea.web.plist b/scripts/launchd/io.gitea.web.plist
deleted file mode 100644
index 43ec612b07..0000000000
--- a/scripts/launchd/io.gitea.web.plist
+++ /dev/null
@@ -1,39 +0,0 @@
-<?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>
- <!-- assumes Gitea is running under 'git' account -->
- <!-- modify below to reflect your settings -->
- <key>UserName</key>
- <string>git</string>
- <key>GroupName</key>
- <string>git</string>
- <key>ProgramArguments</key>
- <array>
- <!-- assumes Gitea is installed in /Users/git/gitea -->
- <!-- modify below to reflect your settings -->
- <string>/Users/git/gitea/gitea</string>
- <string>web</string>
- </array>
- <key>RunAtLoad</key>
- <true/>
- <key>KeepAlive</key>
- <true/>
- <!-- assumes Gitea is installed in /Users/git/gitea -->
- <!-- modify below to reflect your settings -->
- <key>WorkingDirectory</key>
- <string>/Users/git/gitea/</string>
- <key>StandardOutPath</key>
- <string>/Users/git/gitea/log/stdout.log</string>
- <key>StandardErrorPath</key>
- <string>/Users/git/gitea/log/stderr.log</string>
- <!-- default 256 is too low for Gitea needs using parallel pipes -->
- <key>SoftResourceLimits</key>
- <dict>
- <key>NumberOfFiles</key>
- <integer>8192</integer>
- </dict>
- </dict>
-</plist>