]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - INSTALL
SourceFormat Enforcement
[thirdparty/squid.git] / INSTALL
diff --git a/INSTALL b/INSTALL
index 76b369ecd64b5cf7dfe25cc96952f0fe6b9d55ce..615d9b1913dab4409b684f0fd9c7007a907e378c 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -1,40 +1,28 @@
-Change the prefix variable in ./Makefile to be the directory in which
-you would like to install the Harvest Cache.  The default is
-/usr/local/harvest.
+/*
+ * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
+ *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
+ */
 
-To build and install the Harvest Cache, type:
+To build and install the Squid Cache, type:
 
+       % ./configure --prefix=/usr/local/squid
         % make all
         % make install
 
 To run a Cache, you will need to:
 
-       1. set the HARVEST_HOME environment variable, as appropriate:
-             % setenv HARVEST_HOME /usr/local/harvest
-
-       2. customize the cached.conf configuration file:
-             % vi $HARVEST_HOME/lib/cached.conf
+       1. customize the squid.conf configuration file:
+             % vi /usr/local/squid/etc/squid.conf
 
+       2. Initalise the cache:
+             % /usr/local/squid/sbin/squid -z
+             
        3. start the cache:
-             % $HARVEST_HOME/bin/RunCache
+             % /usr/local/squid/sbin/squid
 
 If you want to use the WWW interface to the Cache Manager, copy
-the cachemgr.cgi program into your httpd server's cgi-bin
+the tools/cachemgr.cgi program into your httpd server's cgi-bin
 directory.
-
-Alternatively, you can configure your HTTP server to recognize CGI
-scripts in $HARVEST_HOME/cgi-bin.  For example, with NCSA httpd, add
-this line to the srm.conf file:
-
-        ScriptAlias /Harvest/cgi-bin/ Your-HARVEST_HOME/cgi-bin/
-
-Then, use <URL:http://host/Harvest/cgi-bin/cachemgr.cgi> to access the
-WWW interface to the Cache Manager.
-
-For further or more detailed instructions on how to run the Cache, 
-refer to the Harvest User's Manual:
-        http://harvest.cs.colorado.edu/harvest/doc.html
-
-To run the Cache as an httpd accelerator, follow the instructions here:
-        http://harvest.cs.colorado.edu/harvest/httpd_accel.html
-