Skip to content

Commit

Permalink
Mongodb support
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-chmel committed Jun 9, 2022
1 parent 919138c commit f0a183b
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions mongo/mongod.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# mongod.conf

# for documentation of all options, see:
# http://docs.mongodb.org/manual/reference/configuration-options/

# Where and how to store data.
storage:
dbPath: /var/lib/mongodb
journal:
enabled: true
# engine:
# wiredTiger:

# where to write logging data.
systemLog:
destination: file
logAppend: true
path: /var/log/mongodb/mongod.log

# network interfaces
net:
port: 27017
bindIp: 127.0.0.1


# how the process runs
processManagement:
timeZoneInfo: /usr/share/zoneinfo

security:
authorization: "disabled"

#operationProfiling:

#replication:

#sharding:

## Enterprise-Only Options:

#auditLog:

#snmp:

0 comments on commit f0a183b

Please sign in to comment.