Domain
도메인 설정 및 연결 관리
Domain
autoseeding.ai
SSL Status
경로 기반
기존 도메인 하위 경로로 콘텐츠를 구성합니다.
/blog, /resources
서브도메인
별도 서브도메인에서 콘텐츠를 호스팅합니다.
blog.example.com
독립 도메인
완전히 새로운 도메인에서 콘텐츠를 운영합니다.
example.com
Vercel
Netlify
Cloudflare
Framer
Webflow
Wix
Custom
Add custom domain in Vercel
Go to your Vercel project settings → Domains and add "autoseeding.ai" as a custom domain.
Configure DNS records
Point your domain to Vercel by adding an A record (76.76.21.21) and a CNAME for "www" (cname.vercel-dns.com).
# DNS Records
A @ 76.76.21.21
CNAME www cname.vercel-dns.comSet up path-based routing
Add a rewrite rule in next.config.ts to route /blog/* requests to the SEO content engine.
// next.config.ts
const nextConfig = {
async rewrites() {
return [
{
source: '/blog/:path*',
destination: '/api/seo-content/:path*',
},
];
},
};Verify SSL and connectivity
Run a health check to confirm that SSL is valid, the domain resolves correctly, and response times are within acceptable limits.
마지막 확인: 2026. 2. 24. 오전 10:15:00
| Type | Name | Value | TTL |
|---|---|---|---|
| A | @ | 76.76.21.21 | 3600 |
| CNAME | www | cname.vercel-dns.com | 3600 |
| TXT | @ | v=spf1 include:_spf.google.com ~all | 3600 |
| MX | @ | alt1.aspmx.l.google.com | 3600 |