aboutsummaryrefslogtreecommitdiffstats
path: root/community/mongodb/mongodb.confd
diff options
context:
space:
mode:
Diffstat (limited to 'community/mongodb/mongodb.confd')
-rw-r--r--community/mongodb/mongodb.confd14
1 files changed, 14 insertions, 0 deletions
diff --git a/community/mongodb/mongodb.confd b/community/mongodb/mongodb.confd
new file mode 100644
index 0000000000..4f76c5a79f
--- /dev/null
+++ b/community/mongodb/mongodb.confd
@@ -0,0 +1,14 @@
+# Mongodb essentials
+MONGODB_EXEC="/usr/bin/mongod"
+MONGODB_RUN="/var/run/mongodb"
+MONGODB_DATA="/var/lib/mongodb"
+MONGODB_USER="mongodb"
+
+# Listen to specified IP, comment this to listen to all
+MONGODB_IP="127.0.0.1"
+
+# Listen to specified port
+MONGODB_PORT="27017"
+
+# Set extra options here, such as disabling the admin web server
+MONGODB_OPTIONS="--journal"