copied the code from the working repo

This commit is contained in:
2024-11-30 16:00:48 +03:00
parent f22b92869b
commit 15ac0cb9b8
148 changed files with 23342 additions and 0 deletions

28
compose.https.yml Normal file
View File

@@ -0,0 +1,28 @@
services:
traefik:
image: traefik:v2.11
container_name: "traefik"
restart: always
command:
- "--log.level=DEBUG"
- "--accesslog=true"
- "--providers.docker=true"
- "--providers.docker.network=proxy"
- "--providers.docker.exposedbydefault=false"
- "--entrypoints.web.address=:80"
- "--entrypoints.websecure.address=:443"
- "--entrypoints.web.http.redirections.entrypoint.to=websecure"
- "--entryPoints.web.http.redirections.entrypoint.scheme=https"
ports:
- "80:80"
- "443:443"
volumes:
- traefik:/letsencrypt
- /var/run/docker.sock:/var/run/docker.sock:ro
volumes:
traefik:
networks:
default:
name: proxy