Skip to content

Commit

Permalink
Merge branch 'release/v1.21.5-7'
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Sprey authored and cesmarvin committed Sep 20, 2022
2 parents 9e0b9a9 + fb5ccdb commit 5c09cb2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.21.5-7] - 2022-09-20
### Changed
- Update ces-confd to 0.7.0 #61

## [v1.21.5-6] - 2022-06-07

### Changed
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ RUN set -x -o errexit \
FROM registry.cloudogu.com/official/base:3.15.3-1
LABEL maintainer="[email protected]" \
NAME="official/nginx" \
VERSION="1.21.5-6"
VERSION="1.21.5-7"

ENV CES_CONFD_VERSION=0.6.0 \
CES_CONFD_TAR_SHA256="069d45503149d67585e7ff15ce5cb1fe125c4cda4f69230dbf65851ccd88ad58" \
ENV CES_CONFD_VERSION=0.7.0 \
CES_CONFD_TAR_SHA256="21568a5293208e8d806382087640418fb593bffec52587bb6669efd2ae561d41" \
WARP_MENU_VERSION=1.6.0 \
WARP_MENU_TAR_SHA256="297c910ce2287e5322e3f447408e1ccfbc835874983dbab347b21892c74c8a5f" \
CES_ABOUT_VERSION=0.2.2 \
Expand Down
5 changes: 3 additions & 2 deletions dogu.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Name": "official/nginx",
"Version": "1.21.5-6",
"Version": "1.21.5-7",
"DisplayName": "Nginx",
"Description": "Nginx WebServer.",
"Logo": "https://cloudogu.com/images/dogus/nginx.png",
Expand All @@ -15,7 +15,8 @@
"Dependencies": [
{
"type": "dogu",
"name": "registrator"
"name": "registrator",
"version": ">=0.10.0-1"
}
],
"Configuration": [
Expand Down
3 changes: 3 additions & 0 deletions resources/etc/ces-confd/templates/app.conf.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ server {
{{range .Services}}
location /{{.Location}} {
{{if eq .HealthStatus "healthy" "" }}
{{ if .Rewrite }}
rewrite ^/{{ .Rewrite.Pattern }}(/|$)(.*) {{ .Rewrite.Rewrite }}/$2 break;
{{end}}
proxy_pass {{.URL}};
{{else}}
error_page 503 /errors/starting.html;
Expand Down

0 comments on commit 5c09cb2

Please sign in to comment.