Disable Cloudflare
This commit is contained in:
parent
a9995ba91b
commit
37ab02680e
|
@ -6,6 +6,7 @@ PORTAINER_ADMIN_PASSWORD=h4ckMePleAse
|
||||||
PGID=1000
|
PGID=1000
|
||||||
PUID=1000
|
PUID=1000
|
||||||
|
|
||||||
|
# now these cloufdlare variables are useless
|
||||||
CLOUDFLARE_EMAIL=your@email.com
|
CLOUDFLARE_EMAIL=your@email.com
|
||||||
CLOUDFLARE_API_KEY=your_cloudflare_api_key
|
CLOUDFLARE_API_KEY=your_cloudflare_api_key
|
||||||
|
|
||||||
|
|
|
@ -7,14 +7,14 @@ services:
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
- webgateway
|
- webgateway
|
||||||
command: --acme.email=${ACME_MAIL} --docker.domain=${TRAEFIK_DOMAIN} --acme.dnschallenge=true --acme.dnschallenge.provider="cloudflare" --acme.dnschallenge.delaybeforecheck=300
|
command: --acme.email=${ACME_MAIL} --docker.domain=${TRAEFIK_DOMAIN} #--acme.dnschallenge=true --acme.dnschallenge.provider="cloudflare" --acme.dnschallenge.delaybeforecheck=300
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
- "443:443"
|
- "443:443"
|
||||||
#- "8080:8080"
|
#- "8080:8080"
|
||||||
environment:
|
# environment:
|
||||||
- CF_API_EMAIL=${CLOUDFLARE_EMAIL}
|
# - CF_API_EMAIL=${CLOUDFLARE_EMAIL}
|
||||||
- CF_API_KEY=${CLOUDFLARE_API_KEY}
|
# - CF_API_KEY=${CLOUDFLARE_API_KEY}
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
- ./traefik.toml:/traefik.toml
|
- ./traefik.toml:/traefik.toml
|
||||||
|
|
|
@ -24,6 +24,8 @@ storage = "acme.json"
|
||||||
entryPoint = "https"
|
entryPoint = "https"
|
||||||
onHostRule = true
|
onHostRule = true
|
||||||
acmeLogging = true
|
acmeLogging = true
|
||||||
|
[acme.httpChallenge]
|
||||||
|
entryPoint = "http"
|
||||||
|
|
||||||
################################################################
|
################################################################
|
||||||
# Docker configuration backend
|
# Docker configuration backend
|
||||||
|
|
Loading…
Reference in New Issue