Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Athlon1600/php-proxy-app
Web Proxy Application built on php-proxy library ready to be installed on your server
https://github.com/Athlon1600/php-proxy-app
glype php-proxy proxy proxy-server web-proxy
Last synced: 12 days ago
JSON representation
Web Proxy Application built on php-proxy library ready to be installed on your server
- Host: GitHub
- URL: https://github.com/Athlon1600/php-proxy-app
- Owner: Athlon1600
- License: mit
- Created: 2015-05-10T22:30:29.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-08-14T19:28:37.000Z (about 3 years ago)
- Last Synced: 2024-10-01T13:09:08.490Z (about 1 month ago)
- Topics: glype, php-proxy, proxy, proxy-server, web-proxy
- Language: PHP
- Homepage: https://www.php-proxy.com/
- Size: 29.3 KB
- Stars: 829
- Watchers: 45
- Forks: 520
- Open Issues: 76
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![](https://img.shields.io/packagist/dt/Athlon1600/php-proxy-app.svg) ![](https://img.shields.io/github/last-commit/Athlon1600/php-proxy-app.svg) ![](https://img.shields.io/github/license/Athlon1600/php-proxy-app.svg)# php-proxy-app
Web Proxy Application built on [**php-proxy library**](https://github.com/Athlon1600/php-proxy) ready to be installed on your server
![alt text](http://i.imgur.com/KrtU5KE.png?1 "This is how PHP-Proxy looks when installed")
## To Do List
As of **March 25**, 2018:
* Plugin for facebook.com
* Plugin for dailymotion.com
* Better support/documentation for Plugin Development
* Better Javascript support## Web-Proxy vs Proxy Server
Keep in mind that sites/pages that are too script-heavy or with too many "dynamic parts", may not work with this proxy script.
That is a known limitation of web proxies. For such sites, you should use an actual proxy server to route your browser's HTTP requests through:https://www.proxynova.com/proxy-software/
## Installation
Keep in mind that this is a **project** and not a library. Installing this via *require* would do you not good.
A project such as this, should be installed straight into the public directory of your web server.```bash
composer create-project athlon1600/php-proxy-app:dev-master /var/www/
```If you do not have composer or trying to host this application on either a **shared hosting**, or a VPS hosting with limited permissions (dreamhost.com), then download a pre-installed version of this app as a ZIP archive from [**www.php-proxy.com**](https://www.php-proxy.com/).
**Direct Link:**
https://www.php-proxy.com/download/php-proxy.zip## Keep it up-to-date
Application itself rarely will change, vast majority of changes will be done to its requirement packages like php-proxy. Simply call this command once in a while to make sure your proxy is always using the latest versions.
```
composer update
```#### config.php
This file will be loaded into the global Config class.
#### /templates/
This should have been named "views", but for historic purposes we keep it named as templates for now.
#### /plugins/
PHP-Proxy provides many of its own native plugins, but users are free to write their own custom plugins, which could then be automatically loaded from this very folder. See /plugins/TestPlugin.php for an example.