Sha256: 70a465ba4622e66b3093511dddac01641860e6332e858749255e19b00e3d84fd
Contents?: true
Size: 988 Bytes
Versions: 1
Compression:
Stored size: 988 Bytes
Contents
# 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mongo_browser-0.2.0.rc2 | spec/support/mongodb.conf |