File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
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.29.4-5 "
5+ VERSION="1.29.4-6 "
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.23.3-4
6969LABEL maintainer="hello@cloudogu.com" \
7070 NAME="official/nginx" \
71- VERSION="1.29.4-5 "
71+ VERSION="1.29.4-6 "
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.29.4-5 "
75+ VERSION="1.29.4-6 "
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.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.
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.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.
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change 11# define custom error pages
2+ error_page 401 /errors/401.html;
3+ error_page 403 /errors/403.html;
24error_page 404 /errors/404.html;
35error_page 408 /errors/408.html;
46error_page 502 /errors/502.html;
@@ -9,3 +11,4 @@ error_page 504 /errors/504.html;
911location /errors {
1012 root /var/www/html;
1113}
14+
You can’t perform that action at this time.
0 commit comments