From: wessels <> Date: Sat, 2 Nov 1996 04:31:03 +0000 (+0000) Subject: vhost support in squid.conf X-Git-Tag: SQUID_3_0_PRE1~5544 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ca2b438f193e7c6a1e246bd6ef03899162c9a6e2;p=thirdparty%2Fsquid.git vhost support in squid.conf --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 64841a1023..6f622a94a3 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1,5 +1,5 @@ /* - * $Id: cache_cf.cc,v 1.122 1996/11/01 21:25:00 wessels Exp $ + * $Id: cache_cf.cc,v 1.123 1996/11/01 21:31:03 wessels Exp $ * * DEBUG: section 3 Configuration File Parsing * AUTHOR: Harvest Derived @@ -1512,4 +1512,6 @@ configDoConfigure(void) safe_free(Config.Program.ftpget); Config.Program.ftpget = xstrdup("none"); } + if (httpd_accel_mode && !strcmp(Config.Accel.host, "virtual")) + vhost_mode = 1; }