4ece797df3
Gitea Branch PR & Ansible Deployment / Check and Create PR (push) Successful in 31s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rikku) (push) Successful in 2m39s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (benedikta) (push) Successful in 3m43s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rinoa) (push) Successful in 3m35s
Gitea Branch PR & Ansible Deployment / PR Merge (push) Successful in 17s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (benedikta) (push) Successful in 3m17s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rikku) (push) Successful in 3m17s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rinoa) (push) Successful in 5m24s
51 lines
937 B
Plaintext
51 lines
937 B
Plaintext
# mongod.conf
|
|
# for documentation of all options, see:
|
|
# http://docs.mongodb.org/manual/reference/configuration-options/
|
|
|
|
# where and how to store data.
|
|
storage:
|
|
dbPath: /data/db
|
|
directoryPerDB: true
|
|
|
|
# where to write logging data.
|
|
systemLog:
|
|
destination: file
|
|
quiet: false
|
|
logAppend: true
|
|
logRotate: reopen
|
|
path: /data/mongodb/logs/mongodb.log
|
|
verbosity: 1
|
|
|
|
# network interfaces
|
|
net:
|
|
port: 27017
|
|
unixDomainSocket:
|
|
enabled: true
|
|
pathPrefix: /data/mongodb/tmp
|
|
ipv6: false
|
|
bindIpAll: true
|
|
#bindIp:
|
|
|
|
# replica set options
|
|
replication:
|
|
replSetName: rinoa
|
|
enableMajorityReadConcern: true
|
|
|
|
# sharding options
|
|
#sharding:
|
|
#clusterRole:
|
|
|
|
# process management options
|
|
processManagement:
|
|
fork: false
|
|
pidFilePath: /data/mongodb/tmp/mongodb.pid
|
|
|
|
# set parameter options
|
|
setParameter:
|
|
enableLocalhostAuthBypass: false
|
|
|
|
# security options
|
|
security:
|
|
authorization: enabled
|
|
keyFile: /etc/mongodb/keyfile
|