31 lines
752 B
YAML
31 lines
752 B
YAML
---
|
|
# Variables globales pour la production
|
|
ansible_user: ansible
|
|
ansible_ssh_private_key_file: ~/.ssh/ansible_key
|
|
ansible_become: true
|
|
ansible_become_method: sudo
|
|
|
|
# Configuration Minecraft
|
|
minecraft_version: "1.21.6"
|
|
minecraft_type: "spigot"
|
|
minecraft_user: minecraft
|
|
minecraft_group: minecraft
|
|
minecraft_base_dir: /opt/minecraft
|
|
minecraft_server_dir: /opt/minecraft/server
|
|
minecraft_sources_dir: /opt/minecraft/sources
|
|
minecraft_tools_dir: /opt/minecraft/tools
|
|
minecraft_backup_dir: /opt/minecraft/backups
|
|
|
|
# Configuration Java
|
|
java_version: 21
|
|
java_vendor: openjdk
|
|
|
|
# Configuration Réseau
|
|
server_port: 25565
|
|
rcon_port: 25575
|
|
enable_rcon: true
|
|
|
|
# Configuration Backup
|
|
backup_retention_daily: 7
|
|
backup_retention_weekly: 4
|
|
backup_retention_monthly: 3 |