Go to file
3wc b29afd6fc1
continuous-integration/drone/push Build is passing Details
Update drooooone
2022-03-26 16:03:31 +02:00
proxy Correctly set user_agent 2022-03-12 23:32:19 +09:00
transcoder Upgrade to minify v2 2022-03-12 23:32:24 +09:00
.drone.yml Update drooooone 2022-03-26 16:03:31 +02:00
.gitignore Add .gitignore 2017-01-13 14:14:30 -08:00
.travis.yml Upgrade require go version for parse 2018-11-10 13:08:53 -08:00
Dockerfile Further Dockerfile tweaks, update README 2022-03-26 15:49:33 +02:00
LICENSE initial commit 2015-03-28 23:07:40 +01:00
README.md Further Dockerfile tweaks, update README 2022-03-26 15:49:33 +02:00
compy.go use string instead of *string for Proxy.cert 2018-04-06 12:37:45 +08:00
compy_test.go Update go-httpbin import 2018-11-10 12:57:16 -08:00
go.mod Add go module configuration 2022-03-12 23:32:24 +09:00
go.sum Add go module configuration 2022-03-12 23:32:24 +09:00

README.md

Compy

Compy is an HTTP/HTTPS forward proxy with content compression/transcoding capabilities. One use case is to reduce bandwidth usage when browsing on limited mobile broadband connection.

Features

  • HTTPS proxy (encrypted connection between client and proxy)
  • man in the middle support (compress HTTPS traffic)
  • HTTP2 support (over TLS)
  • Brotli and gzip compression
  • transcode animated GIFs to static images
  • transcode JPEG images to desired quality using libjpeg
  • transcode PNG and JPEG images to WebP
  • HTML/CSS/JavaScript minification

Installation

compy needs a few libraries to compile. On Fedora, run dnf install -y libjpeg-devel On Ubuntu, run apt-get install -y libjpeg8-dev openssl ssl-cert. On macOS, run brew install jpeg. Then compile via:

$ go get github.com/barnacs/compy
$ cd go/src/github.com/barnacs/compy/
$ go install

go will generate the binary at go/bin/compy.

HTTPS

To use the proxy over HTTPS, you will need a certificate for your host. If you don't already have one, you can get one for free or you can generate a self-signed cert by running:

openssl req -x509 -newkey rsa:4096 -nodes -keyout cert.key -out cert.crt -days 3650 -subj '/CN=<your-domain>'

then visit the proxy URL and confirm that you trust your own certificate

To connect to the proxy over TLS, you will need to supply a PAC (proxy auto-config) file to the browser, as most of them do not expose this option to the UI directly. Example:

function FindProxyForURL(url, host) {
   if (url.substring(0, 5) == 'http:' || url.substring(0, 6) == 'https:') {
      return "HTTPS <your-domain>:9999";
   }
   return "DIRECT";
}

This tells the browser to fetch HTTP and HTTPS URLs via the HTTPS proxy and for all other schemas, e.g., WebSocket, connect directly. Set the path to this file in the browser UI and you're good to go.

MitM

To enable man-in-the-middle support, you will need to generate a root cert to sign all the certs generated by the proxy on the fly:

openssl req -x509 -newkey rsa:4096 -nodes -keyout ca.key -out ca.crt -days 3650 -subj '/CN=<your-domain>'

and add it to your client (browser) as a trusted certificate authority

Usage

To run a simple http forward proxy:

compy

To run it over TLS:

compy -cert cert.crt -key cert.key

With man in the middle support:

compy -ca ca.crt -cakey ca.key

Probably the best option is to run it with both TLS and MitM support, combining the two:

compy -cert cert.crt -key cert.key -ca ca.crt -cakey ca.key

You can limit access to your proxy via HTTP BASIC authentication:

compy -cert cert.crt -key cert.key -user myuser -pass mypass

You can also specify the listen port (defaults to 9999):

compy -host :9999

For compression, transcoding and minification options, see compy --help

Docker Usage

A docker image is published as thecoopcloud/compy; you can run it with

docker run -p 9999:9999 thecoopcloud/compy

To run with https enabled, you need to generate the certificates on your host and provide the path to docker:

mkdir ssl
cd ssl
openssl req -x509 -newkey rsa:4096 -nodes -keyout cert.key -out cert.crt -days 3650 -subj '/CN=<your-domain>'
openssl req -x509 -newkey rsa:4096 -nodes -keyout ca.key -out ca.crt -days 3650 -subj '/CN=<your-domain>'
cd ..
docker run -d --name compy -p 9999:9999 -v $PWD/ssl:/ssl compy -cert /ssl/cert.crt -key /ssl/cert.key -ca /ssl/ca.crt -cakey /ssl/ca.key

To rebuild the docker image locally just run:

docker build -t thecoopcloud/compy .

New image versions are automatically built and pushed to Docker Hub using Drone.

References

Credits

https://github.com/pixiv/go-libjpeg https://github.com/tdewolff/minify

License

ISC, see LICENSE