0

My idea is put NGINX as proxy to redirect to Varnish (cache static content) and then proxy to apache with a lot of VirtualHost in different IPs. My problems is that I would know how can configure Varnish to send access to correct IP, I am going explain:

  • NGINX:

    • Listen in: 10.10.10.10, 20.20.20.20 and 30.30.30.30 on ports: 80 and 443
    • Proxy redirect to Varnish 10.10.10.10:8080, 20.20.20.20:8080 and 30.30.30.30:8080
  • Varnish:

    • Port: 8080 - THIS IS THE PROBLEM
    • Proxy content not static to Apache on port 8000 - THIS IS THE OTHER PROBLEM
  • Apache2:

    • Listen in: 10.10.10.10:8000, 20.20.20.20:8000 and 30.30.30.30:8000
    • Response correct VirtualHost

This is the idea. When I try with one IP only, all work correctly, because Varnish is only listen in one IP and port and send to backend in one IP and port too.

Could you help me to configure Varnish or there is a best way to configure similar scenario please?

zeusgod
  • 3
  • 1

1 Answers1

2

You shouldn't need to differentiate based on IP addresses once you have the decoded packet (i.e if you're doing SSL offloading with Nginx).

Once you've got the decoded packet, Varnish can pass the content directly onto Apache, and Apache can work out what site it needs to go to based on the Host header inside the HTTP request - you shouldn't need to have the IPs separate all the way down.

JamesHannah
  • 1,731
  • 2
  • 11
  • 24