Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mimachh/newfranken
https://github.com/mimachh/newfranken
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mimachh/newfranken
- Owner: Mimachh
- Created: 2024-10-20T05:36:39.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-20T08:53:36.000Z (3 months ago)
- Last Synced: 2024-12-13T18:03:49.431Z (28 days ago)
- Language: PHP
- Size: 73.2 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
```