File tree Expand file tree Collapse file tree
resources/etc/nginx/include.d Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM node:lts-alpine as templating
22
33ENV 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
77RUN mkdir -p ${WORKDIR}
88WORKDIR ${WORKDIR}
@@ -68,11 +68,11 @@ RUN wget --progress=bar:force:noscroll -O /tmp/warp.zip https://github.com/cloud
6868FROM registry.cloudogu.com/official/base:3.22.0-2
6969LABEL maintainer="hello@cloudogu.com" \
7070 NAME="official/nginx" \
71- VERSION="1.28.0-2 "
71+ VERSION="1.28.0-3 "
7272
7373ENV 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
7777RUN set -x -o errexit \
7878 && set -o nounset \
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change @@ -9,5 +9,6 @@ ssl_session_cache shared:SSL:50m;
99ssl_session_timeout 5m;
1010
1111ssl_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;
1314ssl_prefer_server_ciphers on;
You can’t perform that action at this time.
0 commit comments