We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 638781f commit a9776c3Copy full SHA for a9776c3
docker-compose.override.yml
@@ -6,13 +6,21 @@ include:
6
services:
7
phpfpm:
8
image: itkdev/php8.4-fpm:latest
9
+ environment:
10
+ - PHP_MAX_EXECUTION_TIME=30
11
+ - PHP_POST_MAX_SIZE=90M
12
+ - PHP_UPLOAD_MAX_FILESIZE=80M
13
+ - PHP_MEMORY_LIMIT=512M
14
15
nginx:
16
labels:
17
- "traefik.http.routers.${COMPOSE_PROJECT_NAME}.middlewares=redirect-to-https"
18
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
19
# Let the container be accessible both internally and externally on the same domain.
20
container_name: ${COMPOSE_DOMAIN}
21
22
+ # Match PHP_UPLOAD_MAX_FILESIZE (plus a little more)
23
+ NGINX_MAX_BODY_SIZE: 90M
24
25
node:
26
image: node:22
0 commit comments