-
Notifications
You must be signed in to change notification settings - Fork 26
Update to latest OpenClaw #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
65bb13b
fix: remove redundant openclaw symlink and add optional HTTPS support
jgarzik c8c7a19
docs: add HTTPS configuration guide
jgarzik 1f2afda
feat: update wizard and templates for OpenClaw 2026.3.x
jgarzik 17573c2
feat: add Telegram pairing approval, CaddyService, and exec support
jgarzik 281523a
fix: restore Caddy bot routes on startup
jgarzik 71ebda0
fix: apply Copilot feedback and add missing test coverage
jgarzik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| # Example Caddyfile for HTTPS reverse proxy | ||
| # Copy this to Caddyfile and replace yourdomain.com with your actual domain | ||
|
|
||
| yourdomain.com { | ||
| reverse_proxy botmaker:7100 | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| # HTTPS Configuration | ||
|
|
||
| BotMaker can optionally run behind a Caddy reverse proxy for automatic HTTPS with Let's Encrypt certificates. | ||
|
|
||
| ## Setup | ||
|
|
||
| 1. **Copy the example Caddyfile:** | ||
| ```bash | ||
| cp Caddyfile.example Caddyfile | ||
| ``` | ||
|
|
||
| 2. **Edit Caddyfile with your domain:** | ||
| ``` | ||
| yourdomain.com { | ||
| reverse_proxy botmaker:7100 | ||
| } | ||
| ``` | ||
|
|
||
| 3. **Set required environment variables** (e.g., in `.env`): | ||
| ```bash | ||
| PUBLIC_HOST=yourdomain.com | ||
| CADDY_ENABLED=true | ||
| ``` | ||
| Without these, BotMaker will bind bot ports directly instead of routing through Caddy, and per-bot HTTPS routes won't be registered. | ||
|
|
||
| 4. **Start with HTTPS profile:** | ||
| ```bash | ||
| docker compose --profile https up -d | ||
| ``` | ||
|
|
||
| ## Requirements | ||
|
|
||
| - Your domain must be publicly accessible on ports 80 and 443 | ||
| - Bot Control UI ports (19000+) must also be reachable from clients for `https://PUBLIC_HOST:<botPort>` access | ||
| - DNS A/AAAA records must point to this server | ||
| - Caddy will automatically obtain and renew Let's Encrypt certificates | ||
|
|
||
| ## Without HTTPS | ||
|
|
||
| By default, BotMaker runs on HTTP port 7100 without the Caddy proxy: | ||
|
|
||
| ```bash | ||
| docker compose up -d | ||
| ``` | ||
|
|
||
| Access at `http://localhost:7100` or `http://your-server-ip:7100` | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.