Skip to content

Commit 8b298b7

Browse files
rootcesmarvin
authored andcommitted
Merge branch 'release/v1.29.4-6'
2 parents 1e7262e + 1281a62 commit 8b298b7

7 files changed

Lines changed: 24 additions & 4 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v1.29.4-6] - 2026-03-12
11+
### Changed
12+
- [#143] added custom 401 and 403 error pages for admin dogu
13+
1014
## [v1.29.4-5] - 2026-02-17
1115
### Changed
1216
- [#140] Update base image to version 3.23.3-4

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.29.4-5"
5+
VERSION="1.29.4-6"
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.23.3-4
6969
LABEL maintainer="hello@cloudogu.com" \
7070
NAME="official/nginx" \
71-
VERSION="1.29.4-5"
71+
VERSION="1.29.4-6"
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.29.4-5"
75+
VERSION="1.29.4-6"
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.29.4-6] - 2026-03-12
10+
### Changed
11+
- Wir haben nur technische Änderungen vorgenommen. Näheres finden Sie in den Changelogs.
12+
913
## [v1.29.4-5] - 2026-02-17
1014
### Changed
1115
- Wir haben nur technische Änderungen vorgenommen. Näheres finden Sie in den Changelogs.

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.29.4-6] - 2026-03-12
10+
### Changed
11+
- We have only made technical changes. You can find more details in the changelogs.
12+
913
## [v1.29.4-5] - 2026-02-17
1014
### Changed
1115
- We have only made technical changes. You can find more details in the changelogs.

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.29.4-5",
3+
"Version": "1.29.4-6",
44
"DisplayName": "Nginx",
55
"Description": "Nginx WebServer.",
66
"Logo": "https://cloudogu.com/images/dogus/nginx.png",

resources/etc/ces-confd/templates/app.conf.tpl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
rewrite ^/{{ .Rewrite.Pattern }}(/|$)(.*) {{ .Rewrite.Rewrite }}/$2 break;
66
{{end}}
77
{{ if eq .ProxyBuffering "off" }}proxy_buffering off;{{ end }}
8+
{{/* allow error pages redirects for admin dogu */}}
9+
{{ if eq .Location "admin" }}
10+
proxy_intercept_errors on;
11+
recursive_error_pages on;
12+
{{ end }}
813
proxy_pass {{.URL}};
914
{{else}}
1015
error_page 503 /errors/starting.html;

resources/etc/nginx/include.d/errors.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# define custom error pages
2+
error_page 401 /errors/401.html;
3+
error_page 403 /errors/403.html;
24
error_page 404 /errors/404.html;
35
error_page 408 /errors/408.html;
46
error_page 502 /errors/502.html;
@@ -9,3 +11,4 @@ error_page 504 /errors/504.html;
911
location /errors {
1012
root /var/www/html;
1113
}
14+

0 commit comments

Comments
 (0)