diff options
author | terminaldweller <thabogre@gmail.com> | 2021-11-02 02:11:15 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-11-02 02:11:15 +0000 |
commit | 14da00b30d18b2728d16fc12d6a2a374d9cc27be (patch) | |
tree | 43d27b41566989ab2bf9b2c497d60f4f82c42f2e /kubernetes/mongodb/mongod.conf | |
parent | updates (diff) | |
download | scripts-14da00b30d18b2728d16fc12d6a2a374d9cc27be.tar.gz scripts-14da00b30d18b2728d16fc12d6a2a374d9cc27be.zip |
updates
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" |