Skip to content

Commit

Permalink
Add missing /cable endpoint (#193)
Browse files Browse the repository at this point in the history
* Add missing /cable endpoint

* Bump version to 9.0.3
  • Loading branch information
timoschwarzer authored Jun 26, 2023
1 parent f8af082 commit c925189
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion zammad/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 9 additions & 0 deletions zammad/templates/configmap-nginx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c925189

Please sign in to comment.