✨ Features: - Complete LEMP stack automation - WordPress with WP-CLI - Redis Object Cache (50% performance boost) - Multi-OS support - SSL/Let's Encrypt integration - Security hardening - Enterprise features - Docker testing environment - GitHub Actions CI/CD - Comprehensive documentation 🧪 Fully tested and production-ready Copyright (c) 2025 Sebastian Palencsár
37 lines
881 B
INI
37 lines
881 B
INI
# Docker Test Environment Inventory
|
|
# This inventory is configured for the Docker testing environment
|
|
|
|
[testservers]
|
|
127.0.0.1 ansible_port=2222 ansible_user=root ansible_ssh_pass=root_password
|
|
|
|
[testservers:vars]
|
|
# Test WordPress Configuration
|
|
wp_admin_user=admin
|
|
wp_admin_password=admin123
|
|
wp_admin_email=admin@example.com
|
|
wp_site_title=WordPress Test Site
|
|
wp_site_url=http://localhost:8080
|
|
|
|
# Test Database Configuration
|
|
mysql_root_password=secure_root_pass_123
|
|
wordpress_db_name=wordpress
|
|
wordpress_db_user=wp_user
|
|
wordpress_db_password=wp_secure_pass_123
|
|
|
|
# PHP Configuration
|
|
php_version=8.3
|
|
php_max_execution_time=300
|
|
php_memory_limit=256M
|
|
php_upload_max_filesize=64M
|
|
|
|
# Nginx Configuration
|
|
nginx_client_max_body_size=64M
|
|
|
|
# Test Configuration
|
|
enable_ssl=false
|
|
timezone=UTC
|
|
|
|
# Ansible Configuration
|
|
ansible_host_key_checking=False
|
|
ansible_python_interpreter=/usr/bin/python3
|