Compose-Examples/examples/readeck
LRVT 67a26c1545
Update docker-compose.yml
add missing env for reverse proxy usage
2024-06-04 10:52:10 +02:00
..
docker-compose.yml Update docker-compose.yml 2024-06-04 10:52:10 +02:00
README.md Update README.md 2024-06-04 10:50:55 +02:00

References

Notes

If you're using readeck as a container behind a reverse proxy, you must set the environment variable READECK_USE_X_FORWARDED=1.

Furthermore, you must adjust the allowed_hosts directive the Readeck config at /etc/readeck/config.toml:

[server]
host = "0.0.0.0"
port = 8000
allowed_hosts = ["readeck.example.com"]
use_x_forwarded_for = true
use_x_forwarded_host = true
use_x_forwarded_proto = true