Skip to main content

max / makenotwork

2.5 KB · 58 lines History Blame Raw
1 # Custom Domains
2
3 You can point your own domain at your Makenot.work profile so fans reach you at `yourdomain.com` instead of `makenot.work/u/username`.
4
5 Setup is two DNS records: one to **route** your domain to Makenot.work, one to **verify** you own it. Add both, then click Verify.
6
7 ## Setup
8
9 ### 1. Add Your Domain
10
11 1. Go to Settings > Domain
12 2. Enter your domain (e.g., `shop.yourdomain.com` or `yourdomain.com`)
13 3. Click "Add"
14
15 Domain names must be valid hostnames. You cannot add `makenot.work` or its subdomains.
16
17 ### 2. Point Your Domain
18
19 Add a CNAME record sending your domain to Makenot.work:
20
21 | Record Type | Host | Value |
22 |-------------|------|-------|
23 | CNAME | `yourdomain.com` (or subdomain) | `connect.makenot.work` |
24
25 > **If your DNS is on Cloudflare, set this record to "DNS only" (grey cloud), not "Proxied."** A proxied record routes through your own Cloudflare instead of to Makenot.work, which blocks both the SSL certificate and your page from loading.
26
27 For an apex/root domain (`yourdomain.com` with no subdomain), most providers don't allow a plain CNAME — use their **CNAME flattening** or **ALIAS** feature pointed at `connect.makenot.work` (Cloudflare does this automatically). If your provider supports neither, use a subdomain like `shop.yourdomain.com` or `www.yourdomain.com`.
28
29 ### 3. Verify Ownership
30
31 Add a DNS TXT record to prove you own the domain:
32
33 | Record Type | Host | Value |
34 |-------------|------|-------|
35 | TXT | `_mnw-verify.yourdomain.com` | `mnw-verify-{verification-code}` |
36
37 The verification code is shown on the settings page after adding your domain.
38
39 After adding both records, return to Settings > Domain and click "Verify." The platform checks via DNS-over-HTTPS (Cloudflare resolver), so verification completes within two minutes.
40
41 ### 4. SSL Certificate
42
43 Once verified and routed, Makenot.work provisions SSL automatically via on-demand TLS. A Let's Encrypt certificate is issued the first time a visitor connects. No action needed on your end. (DNS changes can take up to 24 hours to propagate, so the first load may briefly show a certificate notice until the routing record resolves.)
44
45 ## Managing Your Domain
46
47 From Settings > Domain you can:
48
49 - **View** your current domain and verification status
50 - **Remove** your domain to revert to the default `makenot.work/u/username` URL
51
52 One domain per account. To change domains, remove the current one and add the new one.
53
54 ## See Also
55
56 - [Profile]./profile.md: Editing your public profile
57 - [Getting Started]./getting-started.md: Initial account setup
58