mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-30 23:38:13 +02:00
- Replaced all lowercase wordpress_* variables with uppercase WORDPRESS_* equivalents - Ensured consistency across tasks, templates, and vars - Improves readability and aligns with naming conventions Conversation: https://chatgpt.com/share/68af29b5-8e7c-800f-bd12-48cc5956311c
8 lines
288 B
Django/Jinja
8 lines
288 B
Django/Jinja
file_uploads = On
|
|
memory_limit = {{ WORDPRESS_MAX_UPLOAD_SIZE }}
|
|
upload_max_filesize = {{ WORDPRESS_MAX_UPLOAD_SIZE }}
|
|
post_max_size = {{ WORDPRESS_MAX_UPLOAD_SIZE }}
|
|
max_execution_time = 300
|
|
|
|
; Use msmtp as the Mail Transfer Agent
|
|
sendmail_path = "/usr/bin/msmtp -t" |