Skip to content

Commit fa0aa42

Browse files
committed
5603: Aligned development service config with prod config
1 parent 310f73c commit fa0aa42

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
88

9+
* [PR-550](https://github.com/itk-dev/deltag.aarhus.dk/pull/550)
10+
5603: Aligned development service config with prod config
11+
912
## [4.13.1] - 2025-09-15
1013

1114
* [PR-548](https://github.com/itk-dev/deltag.aarhus.dk/pull/548)

docker-compose.override.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,21 @@ include:
66
services:
77
phpfpm:
88
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
914

1015
nginx:
1116
labels:
1217
- "traefik.http.routers.${COMPOSE_PROJECT_NAME}.middlewares=redirect-to-https"
1318
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
1419
# Let the container be accessible both internally and externally on the same domain.
1520
container_name: ${COMPOSE_DOMAIN}
21+
environment:
22+
# Match PHP_UPLOAD_MAX_FILESIZE (plus a little more)
23+
NGINX_MAX_BODY_SIZE: 90M
1624

1725
node:
1826
image: node:22

0 commit comments

Comments
 (0)