User Guide

How to Setup a reverse proxy in front of NetEye

If your infrastructure requires a reverse proxy set up in front of NetEye, there are some requirements to follow for a correct implementation. The main requirement is that the Host headers MUST be preserved when forwarding requests to a backend server.

This page shows you some examples of Nginx or Apache configurations.

Nginx

[...]
proxy_pass http://backend_server_address;
proxy_set_header Host $host;
[...]

Apache

[...]
ProxyPreserveHost On
ProxyPass / http://backend_server_address/
[...]