mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 20:00:18 +01:00
26 lines
579 B
Text
26 lines
579 B
Text
|
# The global variable file mongodb installation
|
||
|
|
||
|
# The chunksize for shards in MB
|
||
|
mongos_chunk_size: 1
|
||
|
|
||
|
# The port in which mongos server should listen on
|
||
|
mongos_port: 8888
|
||
|
|
||
|
# The port for mongo config server
|
||
|
mongoc_port: 7777
|
||
|
|
||
|
# The directory prefix where the database files would be stored
|
||
|
mongodb_datadir_prefix: /data/
|
||
|
|
||
|
# The interface where the mongodb process should listen on.
|
||
|
# Defaults to the first interface. Change this to:
|
||
|
#
|
||
|
# iface: eth1
|
||
|
#
|
||
|
# ...to override.
|
||
|
#
|
||
|
iface: '{{ ansible_default_ipv4.interface }}'
|
||
|
|
||
|
# The password for admin user
|
||
|
mongo_admin_pass: 123456
|