designorant
designorant
DDokploy
Created by Flain on 3/29/2025 in #help
How to fix NGINX 404 error
Nice looking sign up form btw!
6 replies
DDokploy
Created by Flain on 3/29/2025 in #help
How to fix NGINX 404 error
6 replies
DDokploy
Created by Flain on 3/29/2025 in #help
How to fix NGINX 404 error
Why are you looking at *.traefik.me domain when you have syncmate.live set up?
6 replies
DDokploy
Created by Scan on 3/27/2025 in #help
Need help with Cloudflare real ips
We could probably implement it for Dokploy Requests too with a sane default.
17 replies
DDokploy
Created by Scan on 3/27/2025 in #help
Need help with Cloudflare real ips
I was looking at this the other day for one of my apps. You'll need to add Cloudflare IPs as trusted in: Traefik File System > traefik.yml
entryPoints:
web:
address: ':80'
forwardedHeaders:
trustedIPs:
- 173.245.48.0/20
- 103.21.244.0/22
- 103.22.200.0/22
- 103.31.4.0/22
- 141.101.64.0/18
- 108.162.192.0/18
- 190.93.240.0/20
- 188.114.96.0/20
- 197.234.240.0/22
- 198.41.128.0/17
- 162.158.0.0/15
- 104.16.0.0/12
- 172.64.0.0/13
- 131.0.72.0/22
websecure:
address: ':443'
forwardedHeaders:
trustedIPs:
- 173.245.48.0/20
- 103.21.244.0/22
- 103.22.200.0/22
- 103.31.4.0/22
- 141.101.64.0/18
- 108.162.192.0/18
- 190.93.240.0/20
- 188.114.96.0/20
- 197.234.240.0/22
- 198.41.128.0/17
- 162.158.0.0/15
- 104.16.0.0/12
- 172.64.0.0/13
- 131.0.72.0/22
http3:
advertisedPort: 443
http:
tls:
certResolver: letsencrypt
entryPoints:
web:
address: ':80'
forwardedHeaders:
trustedIPs:
- 173.245.48.0/20
- 103.21.244.0/22
- 103.22.200.0/22
- 103.31.4.0/22
- 141.101.64.0/18
- 108.162.192.0/18
- 190.93.240.0/20
- 188.114.96.0/20
- 197.234.240.0/22
- 198.41.128.0/17
- 162.158.0.0/15
- 104.16.0.0/12
- 172.64.0.0/13
- 131.0.72.0/22
websecure:
address: ':443'
forwardedHeaders:
trustedIPs:
- 173.245.48.0/20
- 103.21.244.0/22
- 103.22.200.0/22
- 103.31.4.0/22
- 141.101.64.0/18
- 108.162.192.0/18
- 190.93.240.0/20
- 188.114.96.0/20
- 197.234.240.0/22
- 198.41.128.0/17
- 162.158.0.0/15
- 104.16.0.0/12
- 172.64.0.0/13
- 131.0.72.0/22
http3:
advertisedPort: 443
http:
tls:
certResolver: letsencrypt
Ideally you'll need a cron to update these. You can grab them from here: https://www.cloudflare.com/ips-v4/# Their range: https://www.cloudflare.com/en-gb/ips/ Then in your app, you just grab cf-connecting-ip
17 replies