Mugatiya is a php ip:port proxy emulator that runs inside an apache web server.
The key feature of mugatiya is the ability to modify the proxy content so that
you can display advertisements on an ip:port proxy. Other features include
Turing tests to weed out bots, black and white lists and simple coding to
allow for easy customisation of the code.
Running mugatiya in apache's httpd web server requires you to save the 'super'
directory somewhere in apache's document root. Then add the following rules
either into the httpd.conf directly or, in the .htaccess file. The below example
is based on having saved the super directory in apache's document root -
usually 'htdocs.'
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/(super|other).*
RewriteCond %{REQUEST_URI} !^/index.html
RewriteCond %{REQUEST_URI} !^/super/superproxy.php
RewriteRule (.*) /super/superproxy.php [L]
For more help please visit http://www.tidytutorials.com/p/mugatiya.html.