Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. The error:
  2. Unsafe permissions on credentials configuration file: /config/dns-conf/cloudflare.ini
  3. Cleaning up challenges
  4. Error determining zone_id: 9103 Unknown X-Auth-Key or X-Auth-Email. Please confirm that you have supplied valid Cloudflare API credentials. (Did you enter the correct email address?)
  5. ERROR: Cert does not exist! Please see the validation error above. Make sure you entered correct credentials into the /config/dns-conf/cloudflare.ini file.
  6.  
  7. The cloudflare.ini file:
  8. dns_cloudflare_email = rTnose@.com
  9. dns_cloudflare_api_key = 123455667778fhjkkllojhgfff
  10.  
  11. Docker-compose file:
  12. letsencrypt:
  13. image: linuxserver/letsencrypt
  14. container_name: letsencrypt
  15. cap_add:
  16. - NET_ADMIN
  17. environment:
  18. - PUID=1000
  19. - PGID=1000
  20. - TZ=Europe/Stockholm
  21. - URL=Domain1.io
  22. - SUBDOMAINS:wildcard
  23. - VALIDATION=dns
  24. - DNSPLUGIN=cloudflare
  25. - EMAIL=rTnose@.com
  26. - ONLY_SUBDOMAINS=false
  27. - EXTRA_DOMAINS=Domain2.io
  28. volumes:
  29. - /appdata/letsencrypt/:/config
  30. ports:
  31. - 443:443
  32. - 80:80
  33. restart: unless-stopped
  34.  
  35. On Cloudflare I have these two domains, both set to strict ssl.
  36. Both domains has Origin Certificates, domain and *.domain.io
  37. The cloud icon is set to grey.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement