Files
ansible-lemp-wordpress/vars/ubuntu.yml
Sebastian Palencsár 573224a36b 🚀 Initial release: Complete Ansible LEMP WordPress automation
 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
2025-06-18 18:24:55 +02:00

40 lines
733 B
YAML

# Ubuntu-specific variables
---
# Package names for Ubuntu
packages:
- nginx
- mysql-server
- php8.3-fpm
- php8.3-mysql
- php8.3-curl
- php8.3-gd
- php8.3-intl
- php8.3-mbstring
- php8.3-soap
- php8.3-xml
- php8.3-xmlrpc
- php8.3-zip
- python3-pymysql
- unzip
# Service names
mysql_service: mysql
nginx_service: nginx
php_fpm_service: php8.3-fpm
# Package manager
package_manager: apt
# PHP paths
php_fpm_config_path: /etc/php/8.3/fpm
php_cli_config_path: /etc/php/8.3/cli
php_fpm_pool_path: /etc/php/8.3/fpm/pool.d
# Nginx paths
nginx_config_path: /etc/nginx
nginx_sites_available: /etc/nginx/sites-available
nginx_sites_enabled: /etc/nginx/sites-enabled
# MySQL paths
mysql_config_path: /etc/mysql