Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrittonWinterrose/e02ba66fc3ed4f03c968ab46813e9520 to your computer and use it in GitHub Desktop.
Save BrittonWinterrose/e02ba66fc3ed4f03c968ab46813e9520 to your computer and use it in GitHub Desktop.
How to install Tinyproxy on Ubuntu with Basic Authentication
## First clone, compile, and install from source because Ubuntu apt-get package is out of date.
git clone https://github.com/tinyproxy/tinyproxy.git
sudo apt-get install automake cmake asciidoc
cd tinyproxy
sudo autoreconf -i
sudo ./configure
sudo make
sudo make install
## Then enable BasicAuth
vi /etc/tinyproxy.conf
-----
BasicAuth user password
Allow your.local.ip.address
-----
sudo /etc/init.d/tinyproxy restart
## or
sudo service tinyproxy restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment