This commit is contained in:
msnie
2024-02-03 11:58:42 +01:00
parent 17ca1c805f
commit 5b0b5f548c
706 changed files with 135245 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
DOMAIN_NAME=knast.cc
DEFAULT_NETWORK=traefik
+21
View File
@@ -0,0 +1,21 @@
version: "3"
services:
nginx:
container_name: nginx
image: nginx:alpine
volumes:
- ./site:/usr/share/nginx/html
ports:
- 8008:80
restart: unless-stopped
command: /bin/sh -c "while :; do sleep 6h & wait $${!}; nginx -s reload; done & nginx -g 'daemon off;'"
labels:
- "traefik.enable=true"
- "traefik.http.routers.dummy.entrypoints=websecure"
- "traefik.http.routers.dummy.rule=Host(`site.$DOMAIN_NAME`)"
- "traefik.http.routers.dummy.tls.certresolver=letsencr"
networks:
default:
external:
name: $DEFAULT_NETWORK
+74
View File
@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Site For The Things</title>
<script defer data-domain="site.knast.cc" src="https://stats.knast.cc/js/plausible.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<br><br>
<br><br>
<div class=container-fluid>
<div class="row">
<div class="d-flex justify-content-center">
<h1>Home is where that thing lives</h1>
<hr>
<br>
<br>
</div>
</div>
<br><br><br>
<div class="row">
<div class="d-flex justify-content-center">
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">Sifu dodo and the barnicle posse</h1>
<p class="lead">
A tale of eight strangers coming together to save their caravan park from horny teenagers and worm controlled birds.
</p>
</div>
<br><br>
<br><br>
</div>
</div>
<br><br>
<div class="alert alert-info" role="alert">
This is a info alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-primary" role="alert">
This is a primary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-secondary" role="alert">
This is a secondary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-success" role="alert">
This is a success alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<br><br>
</div>
<br><br>
<div class="row">
<div class="d-flex justify-content-center">
<div class="card">
<div class="card-header">
Featured
</div>
<div class="card-body">
<h5 class="card-title">Special title treatment</h5>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>