Polipo Box

Example setup for running polipo in a Vagrant box
Alternatives To Polipo Box
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Ubuntu723
a year ago21apache-2.0Shell
Virtual machine templates for Ubuntu written in legacy JSON
Kubernetes Vagrant Coreos Cluster602
5 years ago29apache-2.0Shell
Kubernetes cluster (for testing purposes) made easy with Vagrant and CoreOS.
Vagrant Proxyconf494
53 years ago34July 03, 202018mitRuby
Vagrant plugin that configures the virtual machine to use proxies
Prax482
6 years ago23otherRuby
Rack proxy server for development
Centos423
a year ago2apache-2.0Shell
Virtual machine templates for CentOS written in legacy JSON
Macos316
a year ago9mitShell
Virtual machine templates for macOS written in legacy JSON
Debian195
a year agoapache-2.0Shell
Virtual machine templates for Debian written in legacy JSON
Pool166
8 years ago26otherRuby
The simplest proxy service to access your Dockerized webapps by Git commit-id.
Xxelab130
2 years agomitHTML
A simple web app with a XXE vulnerability.
Joindin Web295
4 months ago80bsd-3-clausePHP
HTTP Frontend For the Joind.in API
Alternatives To Polipo Box
Select To Compare


Alternative Project Comparisons
Readme

polipo-box

Example setup for running polipo proxy server in a Vagrant box.

This can be used in combination with the vagrant-proxyconf plugin to cache most HTTP traffic of the VMs to speed up Vagrant usage. The configuration should be easy to customize either as well for local machines as for cloud providers.

Polipo does its best also when offline. But as it can't cache HTTPS traffic, you might want to use vagrant-cachier in combination with vagrant-proxyconf if you aim to use Vagrant without internet connection at times.

Note that the example configuration allows access from everywhere. That should be fine when running on local machine or internal network, but not a good idea if the machine is accessible from internet.

Usage

  • Install Vagrant 1.2 or later: www.vagrantup.com/downloads

  • With Vagrant versions older than 1.7, install the vagrant-omnibus plugin:

      vagrant plugin install vagrant-omnibus
    
  • Clone this repository and customize as needed:

      git clone https://github.com/tmatilai/polipo-box.git
      cd polipo-box
      # edit Vagrantfile
    
  • Spin up the box

      vagrant up
    

Configuring vagrant-proxyconf

  • Install the vagrant-proxyconf plugin:

      vagrant plugin install vagrant-proxyconf
    
  • Configure all Vagrant boxes to use the proxy by default. Put something like the following to $HOME/.vagrant.d/Vagrantfile:

Vagrant.configure("2") do |config|
  config.proxy.http     = "http://192.168.33.200:8123/"
  config.proxy.no_proxy = "localhost,127.0.0.1"
  # other global configuration
end
  • The proxy configuration can be overridden in project specific Vagrantfiles or with environment variables. See the vagrant-proxyconf documentation for details.
Popular Vagrant Projects
Popular Proxy Projects
Popular Virtualization Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Ruby
Proxy
Vagrant