Zoey
fee4903fef
do not give root a random password if login is already disabled by default
...
Signed-off-by: Zoey <zoey@z0ey.de >
2026-08-25 13:00:24 +02:00
Zoey
8bf6193fd0
fix dockerlint
...
Signed-off-by: Zoey <zoey@z0ey.de >
2026-08-05 20:42:33 +02:00
Zoey
b01e93aaf5
Merge branch 'main' into compression
...
Signed-off-by: Zoey <zoey@z0ey.de >
2026-08-05 12:44:42 +02:00
Zoey
def057e780
enable zstd and gzip compression, disable brotli
...
Signed-off-by: Zoey <zoey@z0ey.de >
2026-08-02 14:45:47 +02:00
copilot-swe-agent[bot]
452567ed43
fix(Apache): disable mod_reqtimeout body rate limit to allow slow uploads
...
Fixes #8457 — large file uploads on slow connections were being
terminated by Apache's mod_reqtimeout MinRate=500 default for
request bodies. This adds an explicit RequestReadTimeout directive
that disables the body rate limit (body=0) while keeping the header
timeout for slowloris protection. The existing Timeout directive
(set to APACHE_MAX_TIME / NEXTCLOUD_MAX_TIME) remains as the
effective I/O timeout.
Also ensures mod_reqtimeout is explicitly loaded in the Dockerfile.
Assisted-by: GitHub Copilot:claude-sonnet-4
2026-07-31 08:44:38 +00:00
Simon L.
2ebbf41566
update remaining docker images to alpine 3.24
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2026-06-17 11:31:04 +02:00
Simon L.
12dbef85cb
apache: set default for AIO_LOG_LEVEL
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2026-06-17 11:24:46 +02:00
dependabot[bot]
5a7f543754
build(deps): bump httpd in /Containers/apache
...
Bumps httpd from 2.4.67-alpine3.23 to 2.4.68-alpine3.23.
---
updated-dependencies:
- dependency-name: httpd
dependency-version: 2.4.68-alpine3.23
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-06-09 04:08:13 +00:00
dependabot[bot]
2b8de735dc
build(deps): bump caddy in /Containers/apache
...
Bumps caddy from 2.11.3-alpine to 2.11.4-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-version: 2.11.4-alpine
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-06-03 21:56:07 +00:00
Ivan Mihov
d2d59eb207
Add dockhand.update: false to the Dockerfiles
...
Signed-off-by: Ivan Mihov <ivan@mihov.me >
2026-05-28 11:41:41 +02:00
dependabot[bot]
5eb6850d92
build(deps): bump caddy in /Containers/apache
...
Bumps caddy from 2.11.2-alpine to 2.11.3-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-version: 2.11.3-alpine
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-05-13 04:20:36 +00:00
dependabot[bot]
f2076fa56b
build(deps): bump httpd in /Containers/apache
...
Bumps httpd from 2.4.66-alpine3.23 to 2.4.67-alpine3.23.
---
updated-dependencies:
- dependency-name: httpd
dependency-version: 2.4.67-alpine3.23
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-05-06 04:19:18 +00:00
copilot-swe-agent[bot] and szaimen
49a24272f6
perf(apache): improve performance of the Apache container
...
- nextcloud.conf: increase BrotliCompressionQuality from 0 to 4
- nextcloud.conf: add mod_deflate fallback for non-Brotli clients
- nextcloud.conf: enable HTTP/2 cleartext (h2c) via mod_http2 IfModule block
- nextcloud.conf: remove Options Indexes and duplicate Options line
- nextcloud.conf: remove deprecated Satisfy Any directive
- nextcloud.conf: add KeepAlive On / KeepAliveTimeout 5 / MaxKeepAliveRequests 100
- nextcloud.conf: add EnableSendfile On / EnableMMAP Off
- Dockerfile: enable mod_http2 LoadModule via sed
- Dockerfile: tune mpm_event (MaxRequestWorkers 400, ServerLimit 16,
ThreadsPerChild 25, StartServers 2, MinSpareThreads 25, MaxSpareThreads 75)
- Caddyfile: add encode gzip zstd for response compression
- supervisord.conf: remove duplicate nodaemon=true
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/a79198ed-cd31-4e15-9074-b3d3f3f92069
fix(apache): disable HTTP/2, disable Caddy gzip, restore MaxRequestWorkers 5000
- Caddyfile: remove `encode gzip zstd` (disable gzip/zstd compression in Caddy)
- nextcloud.conf: remove HTTP/2 `<IfModule mod_http2.c>` block (disable h2c in Apache)
- Dockerfile: remove mod_http2.so LoadModule sed line
- Dockerfile: restore MaxRequestWorkers 5000, ServerLimit 200, and original comments
Kept from previous commit:
- BrotliCompressionQuality raised from 0 to 4
- mod_deflate fallback for non-Brotli clients
- KeepAlive On / KeepAliveTimeout 5 / MaxKeepAliveRequests 100
- EnableSendfile On / EnableMMAP Off
- ThreadsPerChild 25, StartServers 2, MinSpareThreads 25, MaxSpareThreads 75
- supervisord.conf: remove duplicate nodaemon=true
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/66a07d0e-2276-4b0e-b17d-53c733530d07
fix(apache): prevent double-encoding, add explanatory comments
- Add SetEnvIfNoCase Accept-Encoding \bbr\b no-gzip inside mod_brotli block
so mod_deflate is skipped for clients that already get Brotli-compressed
responses, preventing double-encoding.
- Expand all comments to explain the purpose/benefit of each added directive.
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/98098727-e2c1-4504-b0d5-47c8b06b794d
docs(apache/Dockerfile): add explanatory comments to all new directives
- Add comment block before the sed/LoadModule block explaining why mpm_event
is chosen and why mod_brotli is enabled alongside the deflate fallback.
- Add per-line comments for ThreadsPerChild, StartServers, MinSpareThreads,
and MaxSpareThreads explaining the rationale for each value.
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/2dc7afc9-b8a1-4b0a-ba13-0ad89e5c2d37
fix(apache): disable EnableSendfile to allow output filters (Brotli/deflate) on static files
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/54995b4a-7b5d-4e8e-a92a-684d32b42bd4
docs(apache/nextcloud.conf): add per-directive comments to KeepAlive block
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/329da0e6-b5dd-4cdd-8c05-9ae0bf25ebfd
reduce MaxSpareThreads from 75 to 50
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/f253e0c7-a192-4bda-96c2-c12a7e1cb81b
raise MaxKeepAliveRequests from 100 to 500 for Nextcloud sync clients
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/89da74d6-b0d3-4d19-909d-dee06cbad060
remove deflate fallback — all Nextcloud-supported browsers have Brotli
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/def9ae64-6793-4c8f-ba0c-e36ef6f8f28f
Apply suggestion from @szaimen
Signed-off-by: Simon L. <szaimen@e.mail.de >
Co-Authored-By: szaimen <42591237+szaimen@users.noreply.github.com >
2026-04-20 15:57:02 +02:00
Erwan Hervé and Simon L.
52c3192f26
chore: add OCI standard labels to all Dockerfiles ( #7899 )
...
Signed-off-by: Erwan Hervé <erwan.herve@outlook.fr >
Signed-off-by: Erwan Hervé <62173453+Erwan-loot@users.noreply.github.com >
Co-authored-by: Simon L. <szaimen@e.mail.de >
2026-04-17 10:42:55 +02:00
dependabot[bot]
ee137e497a
build(deps): bump caddy in /Containers/apache
...
Bumps caddy from 2.11.1-alpine to 2.11.2-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-version: 2.11.2-alpine
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-09 04:09:36 +00:00
dependabot[bot]
00d7dc6c43
build(deps): bump caddy in /Containers/apache
...
Bumps caddy from 2.10.2-alpine to 2.11.1-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-version: 2.11.1-alpine
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-24 04:07:33 +00:00
Simon L.
14d6579893
redis and apache: delete openssl after using it
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2026-02-06 17:23:02 +01:00
Simon L.
0e22f38d16
add wud.watch=false to all containers
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2026-01-19 17:10:22 +01:00
Simon L.
06cdd8eca1
update remaining dependencies to alpine 3.23
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2026-01-05 09:57:39 +01:00
dependabot[bot]
57efcd852d
build(deps): bump httpd in /Containers/apache
...
Bumps httpd from 2.4.65-alpine3.22 to 2.4.66-alpine3.22.
---
updated-dependencies:
- dependency-name: httpd
dependency-version: 2.4.66-alpine3.22
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-12-05 04:12:33 +00:00
dependabot[bot]
1e579b049e
build(deps): bump caddy in /Containers/apache
...
Bumps caddy from 2.10.0-alpine to 2.10.2-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-version: 2.10.2-alpine
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-08-28 05:55:45 +00:00
dependabot[bot]
7fffb1840f
build(deps): bump httpd in /Containers/apache
...
Bumps httpd from 2.4.64-alpine3.22 to 2.4.65-alpine3.22.
---
updated-dependencies:
- dependency-name: httpd
dependency-version: 2.4.65-alpine3.22
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-07-24 05:11:15 +00:00
dependabot[bot]
d6e5bcc0ac
build(deps): bump httpd in /Containers/apache
...
Bumps httpd from 2.4.63-alpine3.22 to 2.4.64-alpine3.22.
---
updated-dependencies:
- dependency-name: httpd
dependency-version: 2.4.64-alpine3.22
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-07-18 04:49:37 +00:00
Simon L.
b2a839a209
update remaining images and docs to alpine v3.22
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2025-07-17 11:57:35 +02:00
Simon L.
5536121899
add org.label-schema.vendor="Nextcloud" label to all containers
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2025-05-19 14:31:29 +02:00
dependabot[bot]
62878cc694
build(deps): bump caddy in /Containers/apache
...
Bumps caddy from 2.9.1-alpine to 2.10.0-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-version: 2.10.0-alpine
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-04-22 04:25:43 +00:00
dependabot[bot]
dee3773bf3
build(deps): bump httpd in /Containers/apache
...
Bumps httpd from 2.4.62-alpine3.21 to 2.4.63-alpine3.21.
---
updated-dependencies:
- dependency-name: httpd
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-24 04:57:37 +00:00
dependabot[bot]
ea789d2dca
build(deps): bump caddy in /Containers/apache
...
Bumps caddy from 2.8.4-alpine to 2.9.1-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-10 04:33:25 +00:00
Simon L.
a0eaea5e95
update remaining docker images to alpine 3.21
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2024-12-16 12:05:46 +01:00
Simon L.
faecc028fe
add user-IDs to all containers
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2024-11-06 14:35:40 +01:00
dependabot[bot]
85c606b09b
build(deps): bump httpd in /Containers/apache
...
Bumps httpd from 2.4.61-alpine3.20 to 2.4.62-alpine3.20.
---
updated-dependencies:
- dependency-name: httpd
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-07-19 12:38:57 +00:00
Simon L.
22fbd73d92
add link to httpd
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2024-07-12 10:31:30 +02:00
dependabot[bot]
6fb4b3479e
build(deps): bump httpd in /Containers/apache
...
Bumps httpd from 2.4.59-alpine3.20 to 2.4.61-alpine3.20.
---
updated-dependencies:
- dependency-name: httpd
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-07-04 12:25:34 +00:00
Simon L.
caae672466
apache,mastercontainer,nextcloud: remove xfs-user adjustments
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2024-06-21 13:31:26 +02:00
Simon L.
267b98bd84
fix casing of AS
...
Signed-off-by: Simon L. <szaimen@e.mail.de >
2024-06-21 13:16:55 +02:00
Zoey
85ede06e7b
update alpine to v3.20.1
2024-06-20 23:58:19 +02:00
dependabot[bot]
c087be299e
Bump caddy from 2.7.6-alpine to 2.8.4-alpine in /Containers/apache
...
Bumps caddy from 2.7.6-alpine to 2.8.4-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-06-05 12:58:21 +00:00
Zoey
c671018798
close #4491
...
Signed-off-by: Zoey <zoey@z0ey.de >
2024-04-17 17:55:43 +02:00
dependabot[bot]
a90bd4af72
Bump httpd in /Containers/apache
...
Bumps httpd from 2.4.58-alpine3.19 to 2.4.59-alpine3.19.
---
updated-dependencies:
- dependency-name: httpd
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-08 12:30:24 +00:00
Zoey
9ba0dbf6a3
add # syntax=docker/dockerfile:latest
...
Signed-off-by: Zoey <zoey@z0ey.de >
2024-02-16 16:21:18 +01:00
Simon L
75b2bd3c75
update all remaining images to alpine3.19
...
Signed-off-by: Simon L <szaimen@e.mail.de >
2024-01-29 16:48:55 +01:00
Simon L
36a67eb749
apache - adjust MaxRequestWorkers and ServerLimit
...
Signed-off-by: Simon L <szaimen@e.mail.de >
2024-01-13 11:23:03 +01:00
dependabot[bot]
adb2988f01
Bump caddy from 2.7.5-alpine to 2.7.6-alpine in /Containers/apache
...
Bumps caddy from 2.7.5-alpine to 2.7.6-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-11 12:53:14 +00:00
dependabot[bot]
8e9eb59d12
Bump httpd in /Containers/apache
...
Bumps httpd from 2.4.57-alpine3.18 to 2.4.58-alpine3.18.
---
updated-dependencies:
- dependency-name: httpd
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-20 13:04:15 +00:00
dependabot[bot]
cf1ae8fb1b
Bump caddy from 2.7.4-alpine to 2.7.5-alpine in /Containers/apache
...
Bumps caddy from 2.7.4-alpine to 2.7.5-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-12 12:51:18 +00:00
dependabot[bot]
11f8ac51db
Bump caddy from 2.7.3-alpine to 2.7.4-alpine in /Containers/apache
...
Bumps caddy from 2.7.3-alpine to 2.7.4-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-18 13:57:58 +00:00
Simon L
62c7e3f133
fix notify-push trusted proxies
...
Signed-off-by: Simon L <szaimen@e.mail.de >
2023-08-17 10:51:55 +02:00
dependabot[bot]
4c5ad66fb3
Bump caddy from 2.7.2-alpine to 2.7.3-alpine in /Containers/apache
...
Bumps caddy from 2.7.2-alpine to 2.7.3-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-15 12:46:57 +00:00
dependabot[bot]
d12a3984ab
Bump caddy from 2.6.4-alpine to 2.7.2-alpine in /Containers/apache
...
Bumps caddy from 2.6.4-alpine to 2.7.2-alpine.
---
updated-dependencies:
- dependency-name: caddy
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-04 12:36:25 +00:00
Simon L
87a2d6fd8e
remove cgi-bin scripts
...
Signed-off-by: Simon L <szaimen@e.mail.de >
2023-07-17 09:51:43 +02:00