diff options
Diffstat (limited to 'kubernetes/mongodb/mongod.conf')
-rw-r--r-- | kubernetes/mongodb/mongod.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/kubernetes/mongodb/mongod.conf b/kubernetes/mongodb/mongod.conf new file mode 100644 index 0000000..85d2bd9 --- /dev/null +++ b/kubernetes/mongodb/mongod.conf @@ -0,0 +1,15 @@ +# vim: ft=yaml +systemLog: + destination: file + path: "/var/log/mongodb/mongod.log" + logAppend: true +storage: + journal: + enabled: true +processManagement: + fork: true +net: + bindIp: 0.0.0.0 + port: 27017 +setParameter: + enableLocalhostAuthBypass: false |