Compare commits

...
Author SHA1 Message Date
Linus Gasser bb8f0e342f fix: add variable for memRequestBodyBytes and set to 16MB 2026-07-25 22:13:56 +02:00
p4u1 178c61b3d2 fix: ensure large uploads work 2026-07-25 22:08:52 +02:00
renovate-bot 4c41c21799 chore(deps): update mariadb docker tag to v12 2026-07-25 21:55:11 +02:00
renovate-bot f60f10c6dd chore(deps): update mariadb docker tag to v11.8
continuous-integration/drone/tag Build is passing
2026-07-25 19:40:39 +00:00
renovate-bot d8f5c23897 chore(deps): update nginx docker tag to v1.31.3 2026-07-25 19:35:35 +00:00
renovate-bot 7e4cbce41e chore(deps): update docker.elastic.co/elasticsearch/elasticsearch docker tag to v8.19.19 2026-07-25 19:33:35 +00:00
renovate-bot 6619501f5c chore(deps): update redis docker tag to v8.8.1 2026-07-24 19:17:43 +00:00
renovate-bot 53d7f765ae chore(deps): update nextcloud docker tag to v32.0.13
continuous-integration/drone/tag Build is passing
2026-07-24 02:28:12 +00:00
stevensting fcf1ca56d3 chore: publish 13.1.1+32.0.12-fpm release
continuous-integration/drone/tag Build is passing
2026-07-22 13:27:50 +02:00
6 changed files with 18 additions and 10 deletions
+1
View File
@@ -25,6 +25,7 @@ EXTRA_VOLUME=/dev/null:/tmp/.dummy
PHP_MEMORY_LIMIT=1G
PHP_UPLOAD_LIMIT=512M
MEM_REQUEST_BODY_SIZE=$(( 1048576 * 16 ))
# fpm-tune, see: https://spot13.com/pmcalculator/
FPM_MAX_CHILDREN=16
FPM_START_SERVERS=4
+1 -1
View File
@@ -1,7 +1,7 @@
#!/bin/bash
export FPM_TUNE_VERSION=v5
export NGINX_CONF_VERSION=v8
export NGINX_CONF_VERSION=v8c
export MY_CNF_VERSION=v6
export ENTRYPOINT_VERSION=v3
export ENTRYPOINT_WHITEBOARD_VERSION=v1
+2 -2
View File
@@ -2,7 +2,7 @@ version: "3.8"
services:
elasticsearch:
image: "docker.elastic.co/elasticsearch/elasticsearch:8.19.16"
image: "docker.elastic.co/elasticsearch/elasticsearch:8.19.19"
environment:
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
@@ -29,7 +29,7 @@ services:
mode: 0600
searchindexer:
image: nextcloud:32.0.12-fpm
image: nextcloud:32.0.13-fpm
volumes:
- nextcloud:/var/www/html/
- nextapps:/var/www/html/custom_apps:cached
+1 -1
View File
@@ -9,7 +9,7 @@ services:
- MYSQL_PASSWORD_FILE=/run/secrets/db_password
db:
image: "mariadb:11.4"
image: "mariadb:12.3"
environment:
- MYSQL_DATABASE=nextcloud
- MYSQL_USER=nextcloud
+8 -5
View File
@@ -1,7 +1,7 @@
version: "3.8"
services:
web:
image: nginx:1.31.1
image: nginx:1.31.3
depends_on:
- app
configs:
@@ -14,6 +14,7 @@ services:
- STACK_NAME
- HSTS_ENABLED
- HSTS_PRELOAD
- PHP_UPLOAD_LIMIT=${PHP_UPLOAD_LIMIT:-512M}
volumes:
- nextcloud:/var/www/html/
- nextapps:/var/www/html/custom_apps:cached
@@ -37,6 +38,8 @@ services:
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
- "traefik.http.middlewares.${STACK_NAME}-redirect.redirectscheme.scheme=https"
- "traefik.http.middlewares.${STACK_NAME}-redirect.redirectscheme.permanent=true"
- "traefik.http.middlewares.${STACK_NAME}-buffering.buffering.maxRequestBodyBytes=0"
- "traefik.http.middlewares.${STACK_NAME}-buffering.buffering.memRequestBodyBytes=${MEM_REQUEST_BODY_BYTES:-1048576}"
- "caddy=${DOMAIN}"
- "caddy.reverse_proxy={{upstreams 80}}"
- "caddy.tls.on_demand="
@@ -48,7 +51,7 @@ services:
start_period: 5m
app:
image: nextcloud:32.0.12-fpm
image: nextcloud:32.0.13-fpm
depends_on:
- db
configs:
@@ -95,7 +98,7 @@ services:
failure_action: rollback
order: start-first
labels:
- "coop-cloud.${STACK_NAME}.version=13.1.0+32.0.11-fpm"
- "coop-cloud.${STACK_NAME}.version=13.1.1+32.0.12-fpm"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT}"
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
- "backupbot.backup.volumes.redis=false"
@@ -109,7 +112,7 @@ services:
start_period: 15m
cron:
image: nextcloud:32.0.12-fpm
image: nextcloud:32.0.13-fpm
volumes:
- nextcloud:/var/www/html/
- nextapps:/var/www/html/custom_apps:cached
@@ -125,7 +128,7 @@ services:
cache:
image: redis:8.8.0-alpine
image: redis:8.8.1-alpine
networks:
- internal
volumes:
+5 -1
View File
@@ -54,7 +54,7 @@ http {
{{ end }}
# set max upload size
client_max_body_size 512M;
client_max_body_size {{ env "PHP_UPLOAD_LIMIT" }} ;
fastcgi_buffers 64 4K;
# Enable gzip but do not remove ETag headers
@@ -162,6 +162,10 @@ http {
fastcgi_intercept_errors on;
fastcgi_request_buffering off;
fastcgi_read_timeout 3600s;
fastcgi_send_timeout 3600s;
fastcgi_connect_timeout 60s;
}
location ~ \.(?:css|js|svg|gif)$ {