Skip to content

Commit 15843ed

Browse files
committed
Apps 2
1 parent fcbb7fb commit 15843ed

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

content/blog/apps-chatwoot-1-install/-ssh-port-forwarding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ You need to **forward ports** so you can access remote server ports from your la
66
Connect to the server using the command:
77

88
```bash { title="Connect to server with port forwarding" }
9-
$ ssh -L 3000:localhost:3000 3009:localhost:3009 {user}@{server}
9+
ssh -L 3000:localhost:3000 -L 3009:localhost:3009 {user}@{server}
1010
```
1111
{{< /callout >}}

content/blog/apps-chatwoot-1-install/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ wget -O .chatwoot.env https://raw.githubusercontent.com/devlikeapro/waha/refs/he
9393
wget -O docker-compose.yaml https://raw.githubusercontent.com/devlikeapro/waha/refs/heads/core/docker-compose/chatwoot/docker-compose.yaml
9494
```
9595

96-
### 4. Configure environment variables
96+
### 3. Configure environment variables
9797
Now you can tweak `.waha.env`, `.chatwoot.env` and `docker-compose.yaml` according to your preferences.
9898

9999
Here are a few environment variables we suggest that you change before going forward (in this guide we'll use **the default values**):

content/blog/apps-chatwoot-3-https/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ server {
7171
proxy_pass_header Authorization;
7272
proxy_pass http://$upstream;
7373
proxy_set_header Upgrade $http_upgrade;
74-
proxy_set_header Connection "upgrade";
74+
proxy_set_header Connection "Upgrade";
7575
proxy_set_header Host $host;
7676
proxy_set_header X-Forwarded-Proto $scheme;
7777
proxy_set_header X-Forwarded-Ssl on; # Optional
@@ -197,7 +197,7 @@ certbot --webroot -w /var/www/ssl-proof/waha/ -d waha.<yourdomain.com> -i nginx
197197
```
198198

199199
### 5. Update env variables
200-
Update `FRONTEND_URL` in `.chatwoot.env`
200+
Update `WAHA_BASE_URL` in `.waha.env`
201201
```bash
202202
nano .waha.env
203203
```
@@ -216,7 +216,7 @@ docker compose up -d
216216
- Make sure it's working
217217

218218
### 7. Update Webhook URL in ChatWoot
219-
- Open **ChatWoot** `http://localhost:3009`
219+
- Open **ChatWoot** `https://chatwoot.<yourdomain.com>`
220220
- Go to **Settings → Inboxes → {Inbox}**
221221
- Update **Webhook URL** from `http://waha:3000/{WEBHOOKURL}` to `https://waha.<yourdomain.com>/{WEBHOOKURL}`
222222
- Click **Save**

content/docs/apps/chatwoot/-chatwoot-articles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ There's a series of articles about WhatsApp and ChatWoot integrations:
55
2. [**WAHA + ChatWoot - Configuration Guide**]({{< relref "/blog/apps-chatwoot-2-config" >}})
66
3. [**WAHA + ChatWoot - HTTPS Guide**]({{< relref "/blog/apps-chatwoot-3-https" >}})
77

8-
You can follow it **one by one** or skip some parts if you don't need it.
8+
You can follow them **one by one** or skip some parts if you don't need them.
99

1010

1111
Go to

content/docs/apps/chatwoot/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "ChatWoot"
33
description: "ChatWoot App"
4-
lead: "ChatWoot Apps"
4+
lead: "ChatWoot App"
55
date: 2025-07-10T08:49:31+00:00
66
lastmod: 2024-07-10T08:49:31+00:00
77
draft: false
@@ -17,7 +17,7 @@ toc: true
1717
</p>
1818

1919
**WAHA** provides a built-in **WhatsApp** integration for
20-
[**ChatWoot**](https://www.chatwoot.com/) you can configure in few steps!
20+
[**ChatWoot**](https://www.chatwoot.com/) you can configure in a few steps!
2121

2222
{{< include file="content/docs/apps/chatwoot/-disclaimer.md" >}}
2323

0 commit comments

Comments
 (0)