aboutsummaryrefslogtreecommitdiff
path: root/unifi/simplevisor.json
diff options
context:
space:
mode:
Diffstat (limited to 'unifi/simplevisor.json')
-rw-r--r--unifi/simplevisor.json53
1 files changed, 0 insertions, 53 deletions
diff --git a/unifi/simplevisor.json b/unifi/simplevisor.json
deleted file mode 100644
index 566c872..0000000
--- a/unifi/simplevisor.json
+++ /dev/null
@@ -1,53 +0,0 @@
1{
2 "env": {
3 "pass": [
4 "PATH",
5 "HOSTNAME",
6 "SHLVL",
7 "HOME",
8 "PWD",
9
10 "UNIFI_UID",
11 "UNIFI_GID",
12
13 "MONGO_URL",
14 "MONGO_STATS_URL"
15 ],
16 "vault-replace": [
17 "MONGO_USER",
18 "MONGO_PASSWORD"
19 ],
20 "vault-template": [
21 "MONGO_URL",
22 "MONGO_STATS_URL"
23 ]
24 },
25 "jobs": {
26 "init": [
27 {
28 "cmd": ["/unifi-setup.sh"],
29 "run-as": "root"
30 }
31 ],
32 "main": [
33 {
34 "cmd": [
35 "/usr/lib/jvm/default-jvm/bin/java",
36 "-cp", "/usr/lib/unifi/lib/ace.jar",
37 "-Dlog4j.configuration=file:/usr/lib/unifi/log4j.properties",
38 "-Dlog4j2.formatMsgNoLookups=true",
39 "-Dunifi.datadir=/usr/lib/unifi/data",
40 "-Dunifi.logdir=/usr/lib/unifi/logs",
41 "-Dunifi.rundir=/usr/lib/unifi/run",
42 "-Xmx1024M",
43 "-Djava.awt.headless=true",
44 "-Dorg.xerial.snappy.use.systemlib=true",
45 "-Dfile.encoding=UTF-8",
46 "--add-opens=java.base/java.time=ALL-UNNAMED",
47 "com.ubnt.ace.Launcher", "start"
48 ],
49 "run-as": "unifi"
50 }
51 ]
52 }
53}