Some checks failed
Deploy to CF Multisite / deploy (push) Failing after 1m53s
- 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>
47 lines
1.3 KiB
HTML
47 lines
1.3 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" class="active">소개</a></li>
|
|
<li><a href="/contact">연락처</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="content">
|
|
<h1>소개</h1>
|
|
<p>이 사이트는 CF Multisite 플랫폼의 데모 사이트입니다.</p>
|
|
|
|
<h2>기술 스택</h2>
|
|
<ul>
|
|
<li><strong>Cloudflare Workers</strong> - 엣지에서 실행되는 서버리스 함수</li>
|
|
<li><strong>Cloudflare R2</strong> - S3 호환 오브젝트 스토리지</li>
|
|
<li><strong>Gitea</strong> - 셀프 호스팅 Git 서버</li>
|
|
</ul>
|
|
|
|
<h2>작동 방식</h2>
|
|
<ol>
|
|
<li>고객이 Gitea에 정적 파일 업로드</li>
|
|
<li>CI/CD가 R2 버킷에 파일 동기화</li>
|
|
<li>Workers가 요청을 받아 R2에서 파일 서빙</li>
|
|
</ol>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2024 CF Multisite. Powered by Cloudflare.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|