[c] updated Panel Readme with Reverse Proxy

This commit is contained in:
LogolicusZ 2024-07-04 22:21:54 +02:00
parent ac83c09bee
commit a6dbcb67d1

View file

@ -97,19 +97,20 @@ Sobald das Panel live ist, kann man mit einem Administratorenkonto unter "Admin
> [!CAUTION] > [!CAUTION]
> Dies erzwingt 2FA sofort, auch für den angemeldeten Account > Dies erzwingt 2FA sofort auch für den angemeldeten Accounts
![basic administration -> settings -> general -> "Require 2-Factor Authentication" to "All Users"](../../assets/panel/enable-2fa.png) ![basic administration -> settings -> general -> "Require 2-Factor Authentication" to "All Users"](../../assets/panel/enable-2fa.png)
## Reverse Proxy ## Reverse Proxy
Das Caddyfile leitet alle Anfragen an `nugget.chat.space` über einen Reverse-Proxy an den Server `10.2.17.1:4090` weiter und sagt Caddy es soll die IP und location des requesters auch mit sended und die standart Konfiguration von Caddy ignorieren. Das Caddyfile leitet alle Anfragen an `nugget.sangelo.space` über einen Reverse-Proxy an den Server `10.1.30.1:2080` weiter und sagt Caddy es soll die IP und location des Host auch mit sended um die standart Konfiguration von Caddy ignorieren.
```Caddy ```Caddy
nugget.sangelo.space { nugget.sangelo.space {
reverse_proxy 10.1.30.1:2080 reverse_proxy 10.1.30.1:2080 {
header_up header_up X-Real-IP {remote_host}
header_up header_up X-Forwarded-For {remote_host}
}
} }
``` ```