Implemented new upload limit

This commit is contained in:
2023-09-11 18:17:10 +02:00
parent 8407c288fb
commit c0be4a912f
6 changed files with 43 additions and 9 deletions

View File

@@ -4,7 +4,9 @@ services:
application:
logging:
driver: journald
image: wordpress
image: custom_wordpress
build:
context: .
restart: always
ports:
- "127.0.0.1:{{http_port}}:80"

View File

@@ -0,0 +1,5 @@
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