Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mimachh/testfranken
https://github.com/mimachh/testfranken
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mimachh/testfranken
- Owner: Mimachh
- Created: 2024-09-10T18:19:45.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-10T18:30:53.000Z (4 months ago)
- Last Synced: 2024-09-10T20:53:11.654Z (4 months ago)
- Language: PHP
- Size: 62.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# traefik.yml
```yml
entryPoints:
web:
address: ":80"
websecure:
address: ":443"certificatesResolvers:
myresolver:
acme:
email: [email protected]
storage: acme.json
httpChallenge:
entryPoint: web#api:
# dashboard: trueproviders:
docker:
exposedByDefault: false```
# docker compose
```yml
services:
reverse-proxy:
image: traefik:v3.1
ports:
- "80:80"
- "443:443"
- "8080:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./traefik.yml:/etc/traefik/traefik.yml
#- ./traefik_dynamic.yml:/etc/traefik/traefik_dynamic.yml:rocommand:
- --configFile=/etc/traefik/traefik.yml
#- --entrypoints.http.address=:80
#- --providers.docker.exposedByDefault=false
#- --log.level=DEBUG
#- --api=true
#- --api.dashboard=true
#- --privoders.docker.network=traefik
#labels:
#traefik.enable: 'true'
#traefik.http.routers.reverse-proxy.entrypoints: http
#traefik.http.routers.reverse-proxy.rule: Host(`traefik.trouvetatable.fr`)
#traefik.http.routers.reverse-proxy.service: api@internal
#traefik.http.middlewares.traefik-dashboard-auth.basicauth.users: karl:{SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
#traefik.http.routers.reverse-proxy.middlewares: traefik-dashboard-auth
networks:
- traefiknetworks:
traefik:
external: true
```