Skip to content

Commit 2849b1f

Browse files
committed
add ssh tunneling, fix missing sidebar titles, sort sidebar use cases pages alphabetically
1 parent 1a907a4 commit 2849b1f

3 files changed

Lines changed: 35 additions & 6 deletions

File tree

docs/cookbook/deploy-openclaw-on-aws.mdx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,34 @@ OpenClaw connects to your configured channels (like Telegram) and starts listeni
295295
2. Send a message like "Hello!"
296296
3. Your OpenClaw assistant should respond
297297

298+
### Access the Gateway Dashboard
299+
300+
OpenClaw includes a Gateway Dashboard UI on port 18789 for monitoring and managing your agent. Since this port isn't exposed publicly, use SSH tunneling to access it securely from your local machine.
301+
302+
**Set up the tunnel:**
303+
304+
```bash Terminal
305+
ssh -i ~/Downloads/your-key.pem -L 18789:localhost:18789 ubuntu@YOUR_INSTANCE_IP
306+
```
307+
308+
This forwards port 18789 on your local machine to the server. While the SSH session is active, open your browser and navigate to:
309+
310+
```
311+
http://localhost:18789
312+
```
313+
314+
<Tip>
315+
To run the tunnel in the background without an interactive shell, add the `-N` flag:
316+
317+
```bash Terminal
318+
ssh -i ~/Downloads/your-key.pem -L 18789:localhost:18789 -N ubuntu@YOUR_INSTANCE_IP
319+
```
320+
</Tip>
321+
322+
<Note>
323+
Ensure port 443 (HTTPS) is open for IPv4 in your Lightsail instance's networking settings. In the Lightsail console, go to your instance → **Networking****IPv4 Firewall** and add a rule for HTTPS (port 443).
324+
</Note>
325+
298326
## Security best practices
299327

300328
### Configure the firewall

docs/cookbook/launch-ai-agents.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: 'Launch AI Agents on Base'
3+
sidebarTitle: 'Launch AI Agents'
34
description: 'Learn how to build and deploy autonomous AI agents on Base with access to stablecoins, tokens, NFTs, and onchain actions using CDP AgentKit.'
45
---
56

docs/docs.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,17 +1003,17 @@
10031003
{
10041004
"group": "Use Cases",
10051005
"pages": [
1006-
"cookbook/onboard-any-user",
10071006
"cookbook/accept-crypto-payments",
10081007
"cookbook/spend-permissions-ai-agent",
1008+
"cookbook/base-app-coins",
1009+
"cookbook/defi-your-app",
1010+
"cookbook/deploy-openclaw-on-aws",
1011+
"cookbook/go-gasless",
10091012
"cookbook/launch-ai-agents",
10101013
"cookbook/launch-tokens",
1014+
"cookbook/onboard-any-user",
10111015
"cookbook/onchain-social",
1012-
"cookbook/defi-your-app",
1013-
"cookbook/go-gasless",
1014-
"cookbook/base-app-coins",
1015-
"cookbook/testing-onchain-apps",
1016-
"cookbook/deploy-openclaw-on-aws"
1016+
"cookbook/testing-onchain-apps"
10171017
]
10181018
},
10191019
{

0 commit comments

Comments
 (0)