🚀 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
This commit is contained in:
25
templates/wp-cli.yml.j2
Normal file
25
templates/wp-cli.yml.j2
Normal file
@@ -0,0 +1,25 @@
|
||||
# WP-CLI Configuration
|
||||
path: {{ wordpress_path }}
|
||||
url: {{ wordpress_url | default('http://localhost') }}
|
||||
user: {{ nginx_user }}
|
||||
color: auto
|
||||
debug: false
|
||||
quiet: false
|
||||
|
||||
# Core settings
|
||||
core config:
|
||||
dbname: {{ wordpress_db_name }}
|
||||
dbuser: {{ wordpress_db_user }}
|
||||
dbpass: {{ wordpress_db_password }}
|
||||
dbhost: localhost
|
||||
|
||||
# Apache/Nginx integration
|
||||
apache_modules:
|
||||
- mod_rewrite
|
||||
|
||||
# Custom commands and aliases
|
||||
aliases:
|
||||
st: status
|
||||
co: config
|
||||
pl: plugin
|
||||
th: theme
|
||||
Reference in New Issue
Block a user