-
Notifications
You must be signed in to change notification settings - Fork 99
Closed
Description
The correct way to set nginx as a reverse proxy is as follows
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:21114/;
}
Otherwise, in the list of connected devices, the IP address is 127.0.0.1
This was before the change
and this after
The installation script should be updated
Regards
Pasquale
Metadata
Metadata
Assignees
Labels
No labels