forked from jech/polipo
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Silas Brown
committed
Aug 2, 2017
1 parent
4d42ca1
commit 650de50
Showing
60 changed files
with
532 additions
and
489 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
polipo | ||
polipo\.exe | ||
polipo2 | ||
polipo2\.exe | ||
core | ||
*.o | ||
polipo.html | ||
polipo.info | ||
polipo2.html | ||
polipo2.info | ||
html/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
syntax: glob | ||
|
||
polipo | ||
polipo.info | ||
polipo2 | ||
polipo2.info | ||
core | ||
html | ||
*.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
Polipo installation instructions | ||
================================ | ||
Polipo2 installation instructions | ||
================================= | ||
|
||
1. Building and running polipo | ||
------------------------------ | ||
1. Building and running polipo2 | ||
------------------------------- | ||
|
||
$ make all | ||
$ su -c 'make install' | ||
$ man polipo | ||
$ polipo & | ||
$ man polipo2 | ||
$ polipo2 & | ||
|
||
If you want Polipo to put itself into the background, you may replace | ||
If you want Polipo2 to put itself into the background, you may replace | ||
the last line with: | ||
|
||
$ polipo daemonise=true logFile="/var/log/polipo.log" | ||
$ polipo2 daemonise=true logFile="/var/log/polipo2.log" | ||
|
||
On SVR4 systems (Solaris, HP/UX), you will need to use one of the | ||
following (whichever works): | ||
|
||
$ make PLATFORM_DEFINES=-DSVR4 all | ||
$ make PLATFORM_DEFINES=-DSVR4 LDLIBS='-lsocket -lnsl -lresolv' all | ||
|
||
You can also use Polipo without installing: | ||
You can also use Polipo2 without installing: | ||
|
||
$ make | ||
$ nroff -man polipo.man | more | ||
$ ./polipo & | ||
$ nroff -man polipo2.man | more | ||
$ ./polipo2 & | ||
|
||
For information about building on Windows, please see the file README.Windows. | ||
|
||
2. Configuring your user-agent | ||
------------------------------ | ||
|
||
Once polipo is running, configure your user-agent (web browser) to use | ||
Once polipo2 is running, configure your user-agent (web browser) to use | ||
the proxy on `http://localhost:8123/'. Depending on the user-agent, | ||
this is done either by setting the environment variable http_proxy, | ||
e.g. | ||
|
@@ -40,33 +40,33 @@ e.g. | |
|
||
or by using the browser's ``preferences'' menu. | ||
|
||
3. Configuring polipo | ||
--------------------- | ||
3. Configuring polipo2 | ||
---------------------- | ||
|
||
If you want to use an on-disk cache, you will need to create its root | ||
directory: | ||
|
||
$ mkdir /var/cache/polipo/ | ||
$ mkdir /var/cache/polipo2/ | ||
|
||
You should then arrange for cron to run the following on a regular | ||
basis: | ||
|
||
killall -USR1 polipo | ||
killall -USR1 polipo2 | ||
sleep 1 | ||
polipo -x | ||
killall -USR2 polipo | ||
polipo2 -x | ||
killall -USR2 polipo2 | ||
|
||
If you want to use a configuration file, you should put it in one of | ||
the locations `/etc/polipo/config' or `~/.polipo'; you can also use | ||
the locations `/etc/polipo2/config' or `~/.polipo2'; you can also use | ||
the `-c' flag to put it in a non-standard location. See the file | ||
`config.sample' for an example. | ||
|
||
You might also want to create a forbidden URLs file, which you should | ||
put either in one of `/etc/polipo/forbidden' or `~/.polipo-forbidden'; | ||
put either in one of `/etc/polipo2/forbidden' or `~/.polipo2-forbidden'; | ||
you can set the variable `forbiddenFile' in your config file if you | ||
want to put it in a non-standard location. See `forbidden.sample' for | ||
an example. | ||
|
||
|
||
Juliusz Chroboczek | ||
<[email protected]> | ||
Originally by Juliusz Chroboczek | ||
Polipo2 fork maintained by Silas S. Brown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,19 @@ | ||
Polipo is no longer maintained | ||
============================== | ||
|
||
Polipo is no longer maintained. Sorry. | ||
|
||
|
||
Original Polipo README | ||
====================== | ||
|
||
Polipo is single-threaded, non blocking caching web proxy that has | ||
Polipo2 is a single-threaded, non blocking caching web proxy that has | ||
very modest resource needs. See the file INSTALL for installation | ||
instructions. See the texinfo manual (available as HTML after | ||
installation) for more information. | ||
|
||
Current information about Polipo can be found on the Polipo web page, | ||
|
||
http://www.pps.univ-paris-diderot.fr/~jch/software/polipo/ | ||
|
||
Further inquiries should be sent to the Polipo-users mailing list: | ||
|
||
<[email protected]> | ||
|
||
Please see the Polipo web page for subscription information. | ||
The original Polipo was developed by Juliusz Chroboczek from | ||
2003 and was maintained by him up until November 2016. | ||
|
||
This Polipo2 fork is maintained by Silas S. Brown. It is NOT | ||
intended for general use - as Juliusz said when he stepped | ||
down, caching proxies are becoming obsolete for general use | ||
due to the increasing prevalence of encrypted alternatives to | ||
HTTP that reduce caching proxies to simple relays. If all | ||
you want is a simple relay (for example so your Web traffic | ||
originates from a remote IP address), then you can do better | ||
by using a VPN or a SOCKS5 proxy. | ||
|
||
Juliusz Chroboczek | ||
<[email protected]> | ||
Polipo2 is now intended as a drop-in caching layer for | ||
experimental HTTP proxies such as Web Adjuster. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.