1
Web Proxy Filtering and Caching / Re: Nginx reverse proxy - no GUI
« on: October 20, 2024, 02:18:08 pm »
Thanks, i will make some tests with that.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
server {
listen 80;
server_name web1.domain.eu;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://<host1>:80;
}
}
server {
listen 80;
server_name web2.domain.eu;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://<host2>:80;
}
}
No other way.
Cheers,
Franco