Skip to content

Commit

Permalink
Redirect traffic from chat to www hostname in production
Browse files Browse the repository at this point in the history
  • Loading branch information
roch authored and kevindew committed Nov 7, 2024
1 parent 73f2b96 commit 6a61d17
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions charts/app-config/values-production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1466,6 +1466,14 @@ govukApplications:
value: "25"
- name: DELAYED_ACCESS_PLACES_SCHEDULE_INCREMENT
value: "100"
nginxConfigMap:
extraServerConf: |
location /chat {
if ($http_host = 'chat.publishing.service.gov.uk' ) {
return 301 https://www.gov.uk$request_uri;
}
proxy_pass http://govuk-chat;
}
- name: govuk-e2e-tests
chartPath: charts/govuk-e2e-tests
Expand Down

0 comments on commit 6a61d17

Please sign in to comment.