{{ __('Please fix the following:') }}
-
@foreach ($errors->all() as $e)
- {{ $e }} @endforeach
{{ __('Custom domain · DNS setup') }}
{{ __('Point your domain to :app', ['app' => \App\Models\SystemSetting::get('app_name', config('app.name', 'WaDesk'))]) }}
{{ __('Add') }} one of these records on your domain registrar (GoDaddy, Cloudflare, Namecheap, Route 53…) for the domain you typed above:
{{ __('Option 1 — for a subdomain (e.g.') }}
crm.acme.com)| {{ __('Type') }} | {{ __('Name') }} | {{ __('Value') }} | {{ __('TTL') }} |
|---|---|---|---|
| {{ __('CNAME') }} | {{ __('crm') }} | cnames.{{ $appHost }} | 3600 |
{{ __('Option 2 — for an apex / root domain (e.g.') }}
acme.com)| {{ __('Type') }} | {{ __('Name') }} | {{ __('Value') }} | {{ __('TTL') }} |
|---|---|---|---|
| A | @ | {{ request()->server('SERVER_ADDR', '203.0.113.10') }} | 3600 |
- {{ __('Add the record at your DNS provider and save.') }}
- {{ __('Wait 1-30 minutes for DNS propagation.') }}
- {{ __('Hit') }} Save on this form — {{ \App\Models\SystemSetting::get('app_name', config('app.name', 'WaDesk')) }} will check the CNAME and flag it verified on the workspace detail page.
- {{ __("Once verified, SSL is auto-provisioned via Let's Encrypt (no action needed).") }}
Tip: if the verification fails after 30 min, try
dig CNAME your-domain on a terminal — the value
should match exactly.