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