summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorKasra Bigdeli <[email protected]>2019-02-07 07:40:07 -0800
committerGitHub <[email protected]>2019-02-07 07:40:07 -0800
commitc4cbad76cd2c463bf1c3dee4040c79e48fc3aa88 (patch)
treee5e7d66b7e353667b96d0e27ab67fa022ea54fe2
parentad523190cdb3beeede91a25e322be9a5023264d5 (diff)
parentbef498bb1f69970039b21923f9cb666fdefee5f0 (diff)
downloadcaprover-one-click-apps-c4cbad76cd2c463bf1c3dee4040c79e48fc3aa88.tar.gz
caprover-one-click-apps-c4cbad76cd2c463bf1c3dee4040c79e48fc3aa88.zip
Merge pull request #26 from GregaVrbancic/fix-rabbitmq-hostname
fix missing nodename issue
-rw-r--r--public/v1/apps/rabbitmq.json11
1 files changed, 9 insertions, 2 deletions
diff --git a/public/v1/apps/rabbitmq.json b/public/v1/apps/rabbitmq.json
index 9119442..ba0cc07 100644
--- a/public/v1/apps/rabbitmq.json
+++ b/public/v1/apps/rabbitmq.json
@@ -13,7 +13,8 @@
"restart": "always",
"environment": {
"RABBITMQ_DEFAULT_USER": "$$cap_rabbitmq_user",
- "RABBITMQ_DEFAULT_PASS": "$$cap_rabbitmq_password"
+ "RABBITMQ_DEFAULT_PASS": "$$cap_rabbitmq_password",
+ "RABBITMQ_NODENAME": "$$cap_rabbitmq_nodename"
}
}
}
@@ -40,7 +41,13 @@
"label": "RabbitMQ Default Password",
"description": "",
"validRegex": "/.{1,}/"
+ },
+ {
+ "id": "$$cap_rabbitmq_nodename",
+ "label": "RabbitMQ Nodename",
+ "description": "Nodename is appended to the end of the database directory.",
+ "defaultValue": "rabbit@localhost",
+ "validRegex": "/.{1,}/"
}
]
-
}