import Navbar from '@/components/Navbar';
import Footer from '@/components/Footer';
import DocsLayout from '@/components/docs/DocsLayout';
export default function DocsTroubleshootingPage() {
return (
Debug order
- backend process or container
- service port reachability
- reverse proxy route
- DNS
- certificate trust
- dashboard/API visibility
Common failures
- service is down even though the dashboard is reachable
- internal HTTPS shows warnings because DashCA trust is missing
- DNS automation fails due to API token or zone issues
- Caddy changes are not applying because Admin API is unavailable
- Premium features do not unlock because license validation is failing
Mindset
Most DashCaddy problems are really one dependency layer failing while the others are healthy. Debugging that dependency chain is the right way to recover quickly.
);
}