Hi Per,

thank you very much for your quick reply, but I still cannot connect to my to servers from the Internet.

My public IP is 217.140.77.176 und the corresponding domain "www.medmoodle.de".

My configuration file "/etc/varnish/default.vcl" looks like:

backend moodle {
     .host = "192.168.1.57"; #IP of moodle backend
     .port = "80";
}
backend drupal {
     .host = "192.168.1.60"; #IP of drupal backend
     .port = "80";
}
sub vcl_recv {
     if (req.url~"^/moodle"){
            set req.backend = moodle;
}else if(req.url~"^/drupal"){
            set req.backend = drupal;
}

Any ideas?

Regards

Reinhard


_______________________________________________
varnish-misc mailing list
[email protected]
https://www.varnish-cache.org/lists/mailman/listinfo/varnish-misc

Reply via email to