Files
cf-multisite/sample-site/index.html
kappa 8850031c45
Some checks failed
Deploy to CF Multisite / deploy (push) Failing after 1m53s
Initial commit: CF Multisite 멀티테넌트 정적 호스팅
- Cloudflare Workers + R2 기반
- Edge 캐싱으로 비용 절감
- 티어별 Rate Limiting (free/basic/pro)
- KV 기반 사용량 추적
- Admin API (usage, customers, tiers, stats)
- Gitea Actions 배포 워크플로우

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 09:20:46 +09:00

48 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>데모 사이트</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<a href="/" class="logo">Demo Site</a>
<ul>
<li><a href="/"></a></li>
<li><a href="/about">소개</a></li>
<li><a href="/contact">연락처</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>CF Multisite에 오신 것을 환영합니다</h1>
<p>Cloudflare Workers + R2로 구동되는 무료 웹 호스팅 서비스입니다.</p>
</section>
<section class="features">
<div class="feature">
<h3>무제한 사이트</h3>
<p>원하는 만큼 사이트를 만들 수 있습니다.</p>
</div>
<div class="feature">
<h3>글로벌 CDN</h3>
<p>전 세계 어디서나 빠른 속도를 제공합니다.</p>
</div>
<div class="feature">
<h3>자동 HTTPS</h3>
<p>SSL 인증서가 자동으로 적용됩니다.</p>
</div>
</section>
</main>
<footer>
<p>&copy; 2024 CF Multisite. Powered by Cloudflare.</p>
</footer>
</body>
</html>