27 lines
695 B
YAML
27 lines
695 B
YAML
---
|
|
# Configuration spécifique aux serveurs Minecraft
|
|
minecraft_version: "1.21.6"
|
|
minecraft_user: minecraft
|
|
minecraft_group: minecraft
|
|
minecraft_home: /opt/minecraft
|
|
|
|
# Chemins
|
|
minecraft_sources_dir: "{{ minecraft_home }}/sources"
|
|
minecraft_server_dir: "{{ minecraft_home }}/server"
|
|
minecraft_tools_dir: "{{ minecraft_home }}/tools"
|
|
minecraft_backups_dir: "{{ minecraft_home }}/backups"
|
|
|
|
# Configuration serveur
|
|
minecraft_memory_min: "1G"
|
|
minecraft_memory_max: "4G"
|
|
minecraft_port: 25565
|
|
minecraft_rcon_port: 25575
|
|
minecraft_rcon_password: "{{ vault_minecraft_rcon_password }}"
|
|
|
|
# Java
|
|
java_version: 21
|
|
|
|
# Backups
|
|
backup_retention_daily: 7
|
|
backup_retention_weekly: 4
|
|
backup_retention_monthly: 6 |