initial commit

This commit is contained in:
librezo
2022-04-28 16:41:42 +02:00
commit 4232b0758d
16 changed files with 554 additions and 0 deletions

3
website/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
*.secrets
.env
certs

View File

@@ -0,0 +1,24 @@
version: "3.7"
volumes:
website:
name: website
networks:
proxy:
external: true
services:
website:
container_name: website
image: nginx:1.21-alpine
volumes:
- website:/usr/share/nginx/html
labels:
traefik.http.routers.website.entrypoints: web, websecure
traefik.http.routers.website.rule: Host(`www.librezo.xyz`)
traefik.http.services.website.loadbalancer.server.port: 80
traefik.enable: true
networks:
- proxy
restart: unless-stopped

7
website/index.html Normal file
View File

@@ -0,0 +1,7 @@
<html>
<body>
le monocycle c'est la vie
</body>
</html>