feat: update README with server reboot instructions and modify Caddyfile for IP headers
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 14s
Nix Format Check / check-format (push) Successful in 47s
Python Lint Check / check-python (push) Failing after 10s

This commit is contained in:
2025-03-26 15:17:01 +01:00
parent 87fc21ac5a
commit 7d4b255b4c
4 changed files with 18 additions and 12 deletions

View File

@ -64,6 +64,10 @@ fladder.mvl.sh {
}
ip.mvl.sh {
reverse_proxy echoip:8080
reverse_proxy echoip:8080 {
header_up X-Real-IP {remote}
header_up X-Forwarded-For {remote}
header_up X-Forwarded-Proto {scheme}
}
tls {{ caddy_email }}
}

View File

@ -4,7 +4,7 @@ services:
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 8080:8080
- 8585:8080
environment:
- DOZZLE_NO_ANALYTICS=true
restart: unless-stopped

View File

@ -3,12 +3,4 @@ services:
container_name: 'echoip'
image: 'mpolden/echoip:latest'
restart: unless-stopped
ports:
- '8585:8080'
networks:
- caddy_network
networks:
caddy_network:
external: true
name: caddy_default
network_mode: 'host'