This file is indexed.

/usr/share/polipo/www/doc/Proxies-and-caches.html is in polipo 1.0.4.1-1.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<html lang="en">
<head>
<title>Proxies and caches - The Polipo Manual</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="The Polipo Manual">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Background.html#Background" title="Background">
<link rel="prev" href="The-web.html#The-web" title="The web">
<link rel="next" href="Latency-and-throughput.html#Latency-and-throughput" title="Latency and throughput">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
Copyright (C) 2003 -- 2006 by Juliusz Chroboczek.-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
  pre.display { font-family:inherit }
  pre.format  { font-family:inherit }
  pre.smalldisplay { font-family:inherit; font-size:smaller }
  pre.smallformat  { font-family:inherit; font-size:smaller }
  pre.smallexample { font-size:smaller }
  pre.smalllisp    { font-size:smaller }
  span.sc    { font-variant:small-caps }
  span.roman { font-family:serif; font-weight:normal; } 
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
--></style>
</head>
<body>
<div class="node">
<a name="Proxies-and-caches"></a>
<p>
Next:&nbsp;<a rel="next" accesskey="n" href="Latency-and-throughput.html#Latency-and-throughput">Latency and throughput</a>,
Previous:&nbsp;<a rel="previous" accesskey="p" href="The-web.html#The-web">The web</a>,
Up:&nbsp;<a rel="up" accesskey="u" href="Background.html#Background">Background</a>
<hr>
</div>

<h3 class="section">1.2 Proxies and caches</h3>

<p><a name="index-proxy-6"></a><a name="index-caching-7"></a>
A proxy is a program that acts as both a client and a server.  It
listens for client requests and forwards them to servers, and forwards
the servers' replies to clients.

   <p>An HTTP proxy can optimise web traffic away by <dfn>caching</dfn> server
replies, storing them in memory in case they are needed again.  If a
reply has been cached, a later client request may, under some
conditions, be satisfied without going to the source again.

   <p>In addition to taking the shortcuts made possible by caching, proxies
can improve performance by generating better network traffic than the
client applications would do.

   <p>Proxies are also useful in ways unrelated to raw performance.  A proxy
can be used to contact a server that are not visible to the browser,
for example because there is a firewall in the way (see <a href="Parent-proxies.html#Parent-proxies">Parent proxies</a>), or because the client and the server use different lower
layer protocols (for example IPv4 and IPv6).  Another common
application of proxies is to modify the data sent to servers and
returned to clients, for example by censoring headers that expose too
much about the client's identity (see <a href="Censoring-headers.html#Censoring-headers">Censoring headers</a>) or
removing advertisements from the data returned by the server
(see <a href="Forbidden.html#Forbidden">Forbidden</a>).

   <p>Polipo is a caching HTTP proxy that was originally designed as
a <dfn>personal</dfn> proxy, i.e. a proxy that is used by a single user
or a small group of users.

   </body></html>