mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 01:46:10 -04:00
Add 127.0.0.1 and format shell scripts
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# cloudflare_real-ip - Docker mod for SWAG
|
# cloudflare_real-ip - Docker mod for SWAG
|
||||||
|
|
||||||
This mod adds a startup script that gets the IPs from Cloudflare's edge servers, and formats them in a format Nginx can use with `set_real_ip_from`.
|
This mod adds a startup script that gets the IPs from Cloudflare's edge servers, and outputs them in a format Nginx can use with `set_real_ip_from`.
|
||||||
|
|
||||||
It reads this [list for IPv4](https://www.cloudflare.com/ips-v4), and this [list for IPV6](https://www.cloudflare.com/ips-v6).
|
It reads this [list for IPv4](https://www.cloudflare.com/ips-v4), and this [list for IPV6](https://www.cloudflare.com/ips-v6).
|
||||||
|
|
||||||
@@ -22,31 +22,9 @@ include /config/nginx/cf_real-ip.conf;
|
|||||||
|
|
||||||
~~I also recommend including your docker-network as a valid ip `set_real_ip_from 172.17.0.0/16;` in the snippet above.~~
|
~~I also recommend including your docker-network as a valid ip `set_real_ip_from 172.17.0.0/16;` in the snippet above.~~
|
||||||
|
|
||||||
This mod now also *tries* to set the real ip from the interfaces in the container.
|
This mod now adds `127.0.0.1` and *tries* to add the real ip from the interfaces in the container.
|
||||||
|
|
||||||
## Cloudflare tunnels
|
|
||||||
|
|
||||||
In case you use Cloudflare tunnels, real IP might be reported in containers as 127.0.0.1.
|
|
||||||
In this case, please add below to `http` section of `nginx.conf`.
|
|
||||||
|
|
||||||
From:
|
|
||||||
|
|
||||||
|
|
||||||
```nginx
|
|
||||||
real_ip_header X-Forwarded-For;
|
|
||||||
real_ip_recursive on;
|
|
||||||
include /config/nginx/cf_real-ip.conf;
|
|
||||||
```
|
|
||||||
|
|
||||||
to:
|
|
||||||
|
|
||||||
```nginx
|
|
||||||
real_ip_header X-Forwarded-For;
|
|
||||||
real_ip_recursive on;
|
|
||||||
include /config/nginx/cf_real-ip.conf;
|
|
||||||
set_real_ip_from 127.0.0.1;
|
|
||||||
```
|
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
* **16.01.23:** - Add 127.0.0.1 and format shell scripts.
|
||||||
* **21.01.21:** - Fix bug when mod runs before internet-access.
|
* **21.01.21:** - Fix bug when mod runs before internet-access.
|
||||||
|
|||||||
@@ -1,9 +1,18 @@
|
|||||||
#!/usr/bin/with-contenv bash
|
#!/usr/bin/with-contenv bash
|
||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
# shellcheck disable=SC2046
|
|
||||||
|
|
||||||
printf "set_real_ip_from %b;\n" $(curl -s "https://api.cloudflare.com/client/v4/ips" | jq -r '.result.ipv4_cidrs[]') > /config/nginx/cf_real-ip.conf
|
echo "set_real_ip_from 127.0.0.1;" >/config/nginx/cf_real-ip.conf
|
||||||
printf "set_real_ip_from %b;\n" $(curl -s "https://api.cloudflare.com/client/v4/ips" | jq -r '.result.ipv6_cidrs[]') >> /config/nginx/cf_real-ip.conf
|
|
||||||
printf "set_real_ip_from %b;\n" $(ip route | grep -v default | awk '{print $1}') >> /config/nginx/cf_real-ip.conf
|
ip route | grep -v default | awk '{print $1}' | while IFS= read -r line; do
|
||||||
|
echo "set_real_ip_from ${line};" >>/config/nginx/cf_real-ip.conf
|
||||||
|
done
|
||||||
|
|
||||||
|
curl -s "https://api.cloudflare.com/client/v4/ips" | jq -r '.result.ipv4_cidrs[]' | while IFS= read -r line; do
|
||||||
|
echo "set_real_ip_from ${line};" >>/config/nginx/cf_real-ip.conf
|
||||||
|
done
|
||||||
|
|
||||||
|
curl -s "https://api.cloudflare.com/client/v4/ips" | jq -r '.result.ipv6_cidrs[]' | while IFS= read -r line; do
|
||||||
|
echo "set_real_ip_from ${line};" >>/config/nginx/cf_real-ip.conf
|
||||||
|
done
|
||||||
|
|
||||||
chown abc:abc /config/nginx/cf_real-ip.conf
|
chown abc:abc /config/nginx/cf_real-ip.conf
|
||||||
|
|||||||
@@ -1,9 +1,18 @@
|
|||||||
#!/usr/bin/with-contenv bash
|
#!/usr/bin/with-contenv bash
|
||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
# shellcheck disable=SC2046
|
|
||||||
|
|
||||||
printf "set_real_ip_from %b;\n" $(curl -s "https://api.cloudflare.com/client/v4/ips" | jq -r '.result.ipv4_cidrs[]') > /config/nginx/cf_real-ip.conf
|
echo "set_real_ip_from 127.0.0.1;" >/config/nginx/cf_real-ip.conf
|
||||||
printf "set_real_ip_from %b;\n" $(curl -s "https://api.cloudflare.com/client/v4/ips" | jq -r '.result.ipv6_cidrs[]') >> /config/nginx/cf_real-ip.conf
|
|
||||||
printf "set_real_ip_from %b;\n" $(ip route | grep -v default | awk '{print $1}') >> /config/nginx/cf_real-ip.conf
|
ip route | grep -v default | awk '{print $1}' | while IFS= read -r line; do
|
||||||
|
echo "set_real_ip_from ${line};" >>/config/nginx/cf_real-ip.conf
|
||||||
|
done
|
||||||
|
|
||||||
|
curl -s "https://api.cloudflare.com/client/v4/ips" | jq -r '.result.ipv4_cidrs[]' | while IFS= read -r line; do
|
||||||
|
echo "set_real_ip_from ${line};" >>/config/nginx/cf_real-ip.conf
|
||||||
|
done
|
||||||
|
|
||||||
|
curl -s "https://api.cloudflare.com/client/v4/ips" | jq -r '.result.ipv6_cidrs[]' | while IFS= read -r line; do
|
||||||
|
echo "set_real_ip_from ${line};" >>/config/nginx/cf_real-ip.conf
|
||||||
|
done
|
||||||
|
|
||||||
chown abc:abc /config/nginx/cf_real-ip.conf
|
chown abc:abc /config/nginx/cf_real-ip.conf
|
||||||
|
|||||||
Reference in New Issue
Block a user