mitmproxy haproxy_router.py: - Return 404 instead of routing to LuCI (8081) for missing routes - Block any routes that point to port 8081 - Add "WAF Says NO" themed 404 page with multi-layer WAF visual HAProxy (deployed on router): - Configure end_of_internet backend with custom errorfiles - Add "End of Internet" themed error pages for 5xx errors - Patched haproxyctl to include errorfile directives New package: secubox-app-openclaw - Personal AI assistant integration for SecuBox - Supports Anthropic Claude, OpenAI, and Ollama providers - Chat integrations (Telegram, Discord, Slack) - Email/calendar automation support - CLI tool: openclawctl Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
config main 'main'
|
|
option enabled '0'
|
|
option port '3333'
|
|
option host '0.0.0.0'
|
|
option data_path '/srv/openclaw'
|
|
option log_level 'info'
|
|
|
|
# LLM Provider configuration
|
|
config provider 'llm'
|
|
option type 'anthropic'
|
|
# Types: anthropic, openai, ollama, local
|
|
option api_key ''
|
|
# For ollama: set to 'local' and configure ollama_url
|
|
option ollama_url 'http://127.0.0.1:11434'
|
|
option model 'claude-sonnet-4-20250514'
|
|
# Models by provider:
|
|
# anthropic: claude-sonnet-4-20250514, claude-opus-4-20250514
|
|
# openai: gpt-4o, gpt-4-turbo
|
|
# ollama: mistral, llama2, tinyllama
|
|
|
|
# Chat integrations (enable as needed)
|
|
config integration 'telegram'
|
|
option enabled '0'
|
|
option bot_token ''
|
|
|
|
config integration 'discord'
|
|
option enabled '0'
|
|
option bot_token ''
|
|
|
|
config integration 'slack'
|
|
option enabled '0'
|
|
option bot_token ''
|
|
option app_token ''
|
|
|
|
# Email integration (for inbox management)
|
|
config integration 'email'
|
|
option enabled '0'
|
|
option imap_host ''
|
|
option imap_port '993'
|
|
option smtp_host ''
|
|
option smtp_port '587'
|
|
option email ''
|
|
option password ''
|
|
|
|
# Calendar integration
|
|
config integration 'calendar'
|
|
option enabled '0'
|
|
option caldav_url ''
|
|
option username ''
|
|
option password ''
|