48a3d3f3f5
- public/index.html served via nginx.conf (port 8080) - Dockerfile: nginx:1.27-alpine + HEALTHCHECK - .gitea/workflows/flow.yml: build + push to Gitea registry, rolling deploy - stack.yml: Swarm service wired to Traefik (host testwebsite.dev.serso.org) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
30 lines
808 B
HTML
30 lines
808 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>testsite</title>
|
|
<style>
|
|
:root { color-scheme: light dark; }
|
|
body {
|
|
font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
|
|
max-width: 40rem;
|
|
margin: 4rem auto;
|
|
padding: 0 1.5rem;
|
|
line-height: 1.5;
|
|
}
|
|
code {
|
|
background: color-mix(in srgb, currentColor 10%, transparent);
|
|
padding: 0.1em 0.35em;
|
|
border-radius: 0.25em;
|
|
}
|
|
.meta { opacity: 0.7; font-size: 0.9rem; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>testsite is live</h1>
|
|
<p>Served by <code>nginx</code> on port 8080, deployed by Gitea Actions to Docker Swarm.</p>
|
|
<p class="meta">Build: <code id="build">dev</code></p>
|
|
</body>
|
|
</html>
|