Add 1GB upload/download limits and 512MB memory limit for WordPress

This commit is contained in:
gustavooth
2026-07-23 23:36:47 -03:00
parent 5b7ec2656c
commit 10ca8dd32a
2 changed files with 6 additions and 0 deletions
+1
View File
@@ -29,6 +29,7 @@ services:
- wordpress_data:/var/www/html
- ./wp-content/themes:/var/www/html/wp-content/themes
- ./wp-content/plugins:/var/www/html/wp-content/plugins
- ./php.ini:/usr/local/etc/php/conf.d/uploads.ini
depends_on:
db:
condition: service_healthy
+5
View File
@@ -0,0 +1,5 @@
upload_max_filesize = 1G
post_max_size = 1G
memory_limit = 512M
max_execution_time = 300
max_input_time = 300