# mongodb.conf

# Where to store the data.

# Note: if you run mongodb as a non-root user (recommended) you may
# need to create and set permissions for this directory manually,
# e.g., if the parent directory isn't mutable by the mongodb user.
dbpath=/tmp/mongo_browser/db

#where to log
logpath=/tmp/mongo_browser/db.log

logappend=true

port = 27018

# Disables write-ahead journaling
nojournal = true

# Turn on/off security.  Off is currently the default
noauth = true
auth = true

# Verbose logging output.
verbose = true

# Inspect all client data for validity on receipt (useful for
# developing drivers)
objcheck = true

# Set oplogging level where n is
#   0=off (default)
#   1=W
#   2=R
#   3=both
#   7=W+some reads
diaglog = 3

# Disable the HTTP interface (Defaults to localhost:28017).
nohttpinterface = true

# Turns off server-side scripting.  This will result in greatly limited
# functionality
noscripting = true

# Disable data file preallocation.
#noprealloc = true