forked from coleam00/remote-agentic-coding-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCaddyfile.example
More file actions
29 lines (23 loc) · 814 Bytes
/
Caddyfile.example
File metadata and controls
29 lines (23 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Caddy configuration for Remote Coding Agent
# Copy this file to 'Caddyfile' and update with your domain
# Replace 'remote-agent.yourdomain.com' with your actual domain or subdomain
remote-agent.yourdomain.com {
# Reverse proxy to app container
reverse_proxy app:3000
# Optional: Access logs
log {
output file /data/access.log
}
# Optional: Enable compression
encode gzip
# Automatic HTTPS via Let's Encrypt
# No additional configuration needed - Caddy handles it automatically
}
# Alternative configuration with multiple domains:
# remote-agent.yourdomain.com, alternative.domain.com {
# reverse_proxy app:3000
# }
# Alternative: HTTP only (for testing, not recommended for production)
# http://remote-agent.yourdomain.com {
# reverse_proxy app:3000
# }