summaryrefslogtreecommitdiffstats
path: root/system/mongodb/files/mongodb.conf
blob: 83b4cc0589adcd21c531c5990a6897b398d13b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# !! IMPORTANT !!
#
# This file uses the YAML format as described in the documentation:
#   http://docs.mongodb.org/manual/reference/configuration-options/

storage:
    dbPath: "/var/lib/mongodb"
    #engine: wiredTiger

systemLog:
    destination: file
    path: "/var/log/mongodb/mongodb.log"
    quiet: true
    logAppend: true

net:
    port: 27017
    bindIp: 127.0.0.1
    #ssl:
    #    mode: disabled

#security:
    #keyFile:
    #clusterAuthMode:

#replication:
    #replSetName:

# Specifies one of the MongoDB parameters described here:
#   http://docs.mongodb.org/manual/reference/parameters/
#
# You can specify multiple setParameter fields such as:
#   setParameter: {enableTestCommands: 1}
#setParameter: