Skip to content

Commit 795f95f

Browse files
jelemuxcesmarvin
authored andcommitted
Merge branch 'release/v1.28.0-3'
2 parents 08401ab + e2f52b5 commit 795f95f

6 files changed

Lines changed: 19 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v1.28.0-3] - 2025-11-25
11+
### Fixed
12+
- [#130] TLS 1.3 Ciphers require a different configuration key in ssl.conf
13+
- use only Ciphers that are marked as "MUST" per RFC 8446 to fulfill the TLS 1.3 Standard
14+
1015
## [v1.28.0-2] - 2025-06-17
1116
### Fixed
1217
- [#127] Include default configuration for ces-exporter access in maintenance mode

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM node:lts-alpine as templating
22

33
ENV WORKDIR=/template \
44
# Used in template to invalidate caches - do not remove. The release script will auto update this line
5-
VERSION="1.28.0-2"
5+
VERSION="1.28.0-3"
66

77
RUN mkdir -p ${WORKDIR}
88
WORKDIR ${WORKDIR}
@@ -68,11 +68,11 @@ RUN wget --progress=bar:force:noscroll -O /tmp/warp.zip https://github.com/cloud
6868
FROM registry.cloudogu.com/official/base:3.22.0-2
6969
LABEL maintainer="hello@cloudogu.com" \
7070
NAME="official/nginx" \
71-
VERSION="1.28.0-2"
71+
VERSION="1.28.0-3"
7272

7373
ENV CES_MAINTENANCE_MODE=false \
7474
# Used in template to invalidate caches - do not remove. The release script will auto update this line
75-
VERSION="1.28.0-2"
75+
VERSION="1.28.0-3"
7676

7777
RUN set -x -o errexit \
7878
&& set -o nounset \

docs/gui/release_notes_de.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Technische Details zu einem Release finden Sie im zugehörigen [Changelog](https
66

77
## [Unreleased]
88

9+
## [v1.28.0-3] - 2025-11-25
10+
- Nginx unterstützt TLS v1.3
11+
- Für TLS v1.2 und v1.3 werden nur Ciphers benutzt die mit den BSI-Richtlinien kompatibel sind
12+
913
## [v1.28.0-2] - 2025-06-17
1014
- Wir haben nur technische Änderungen vorgenommen. Näheres finden Sie in den Changelogs.
1115

docs/gui/release_notes_en.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Technical details on a release can be found in the corresponding [Changelog](htt
66

77
## [Unreleased]
88

9+
## [v1.28.0-3] - 2025-11-25
10+
- Nginx supports TLS v1.3
11+
- For TLS v1.2 and v1.3 only ciphers that are recommended by the BSI Guidelines are used
12+
913
## [v1.28.0-2] - 2025-06-17
1014
- We have only made technical changes. You can find more details in the changelogs.
1115

dogu.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "official/nginx",
3-
"Version": "1.28.0-2",
3+
"Version": "1.28.0-3",
44
"DisplayName": "Nginx",
55
"Description": "Nginx WebServer.",
66
"Logo": "https://cloudogu.com/images/dogus/nginx.png",

resources/etc/nginx/include.d/ssl.conf.tpl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ ssl_session_cache shared:SSL:50m;
99
ssl_session_timeout 5m;
1010

1111
ssl_protocols TLSv1.2 TLSv1.3;
12-
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:ECDHE-RSA-AES128-GCM-SHA256:AES256+EECDH:DHE-RSA-AES128-GCM-SHA256:AES256+EDH:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4";
12+
ssl_ciphers "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256";
13+
ssl_conf_command Ciphersuites TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384;
1314
ssl_prefer_server_ciphers on;

0 commit comments

Comments
 (0)