initial commit
This commit is contained in:
3
website/.gitignore
vendored
Normal file
3
website/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
*.secrets
|
||||
.env
|
||||
certs
|
||||
24
website/docker-compose.yml
Normal file
24
website/docker-compose.yml
Normal 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
7
website/index.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<html>
|
||||
<body>
|
||||
le monocycle c'est la vie
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user