Skip to content

Console under nginx reverse proxy #85

@pdifeo

Description

@pdifeo

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

image

and this after

image

The installation script should be updated

Regards
Pasquale

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions