Update README.md

pull/23/head
LRVT 2024-06-04 10:50:55 +02:00 zatwierdzone przez GitHub
rodzic 2cdc41718b
commit 73cb00c94a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 18 dodań i 0 usunięć

Wyświetl plik

@ -1,3 +1,21 @@
# References
- https://codeberg.org/readeck/readeck
- https://readeck.org/en/docs/deploy#setup-a-reverse-proxy
# 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
````