- Added detailed API endpoint information in SETUP-INSTRUCTIONS.md - Documented API usage with Ente CLI - Enhanced routing configuration for auth/cast/accounts apps - Updated to version 0.1.64
21 lines
322 B
Caddyfile
21 lines
322 B
Caddyfile
{
|
|
admin off
|
|
auto_https off
|
|
}
|
|
|
|
:3080 {
|
|
log {
|
|
output stdout
|
|
level DEBUG
|
|
}
|
|
|
|
# Simple health check that always works
|
|
handle /health {
|
|
respond "{\"status\": \"OK\"}" 200
|
|
}
|
|
|
|
# Catch-all for debugging
|
|
handle {
|
|
respond "Caddy is running on port 3080" 200
|
|
}
|
|
} |