From c925189ec9e2870552cc22a5aa7decb4c6c5f439 Mon Sep 17 00:00:00 2001 From: Timo Schwarzer Date: Mon, 26 Jun 2023 16:19:02 +0200 Subject: [PATCH] Add missing /cable endpoint (#193) * Add missing /cable endpoint * Bump version to 9.0.3 --- zammad/Chart.yaml | 2 +- zammad/templates/configmap-nginx.yaml | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/zammad/Chart.yaml b/zammad/Chart.yaml index 23287c40..28ed053c 100644 --- a/zammad/Chart.yaml +++ b/zammad/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: zammad -version: 9.0.2 +version: 9.0.3 appVersion: 6.0.0-32 description: Zammad is a web based open source helpdesk/customer support system with many features to manage customer communication via several channels like telephone, facebook, twitter, chat and e-mails. home: https://zammad.org diff --git a/zammad/templates/configmap-nginx.yaml b/zammad/templates/configmap-nginx.yaml index 93f9adad..837ea590 100644 --- a/zammad/templates/configmap-nginx.yaml +++ b/zammad/templates/configmap-nginx.yaml @@ -76,6 +76,15 @@ data: proxy_pass http://zammad-websocket; } + location /cable { + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + proxy_set_header CLIENT_IP $remote_addr; + proxy_read_timeout 86400; + proxy_pass http://zammad-railsserver; + } + location / { {{- if .Values.zammadConfig.nginx.knowledgeBaseUrl }} proxy_set_header X-ORIGINAL-URL $request_uri;