Skip to content

Commit c325d6d

Browse files
committed
Update README.md
1 parent dfe9fad commit c325d6d

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

README.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,33 @@
11
# php-proxy-app
22
Web Proxy Application built on php-proxy library ready to be installed on your server
3+
4+
## Installation
5+
6+
Keep in mind that this is a **project** and not a library. Installing this via *require* would do you not good.
7+
A project such as this, should be installed straight into the public directory of your web server.
8+
9+
```bash
10+
composer create-project athlon1600/php-proxy-app:dev-master /var/www/
11+
```
12+
13+
If you do not have composer or trying to host this application on a **shared hosting**, then download a pre-installed version of this app from [**www.php-proxy.com**](https://www.php-proxy.com/)
14+
15+
## Keep it up-to-date
16+
17+
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.
18+
19+
```
20+
composer update
21+
```
22+
23+
#### config.php
24+
25+
This file will be loaded into the global Config class.
26+
27+
#### /templates/
28+
29+
This is where we store all the "views"
30+
31+
### /plugins/
32+
33+
PHP-Proxy has many of its native plugins, but users are free to write their own which could then be loaded from this very folder. See /plugins/TestPlugin.php for an example.

0 commit comments

Comments
 (0)