https://github.com/heiswayi/web-proxy-script
Private web proxy script
https://github.com/heiswayi/web-proxy-script
http-proxy php-proxy web-proxy
Last synced: about 1 month ago
JSON representation
Private web proxy script
- Host: GitHub
- URL: https://github.com/heiswayi/web-proxy-script
- Owner: heiswayi
- License: mit
- Created: 2015-10-09T01:35:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-16T12:21:55.000Z (6 months ago)
- Last Synced: 2025-03-29T02:04:10.358Z (about 2 months ago)
- Topics: http-proxy, php-proxy, web-proxy
- Language: PHP
- Homepage:
- Size: 58.6 KB
- Stars: 79
- Watchers: 5
- Forks: 86
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# web-proxy-script
A minimalist, private web proxy script written in PHP code.
## Running the Project Locally
To run the project locally, you need to have PHP installed on your machine. The required PHP version is 7.4 or higher. Additionally, you need to have the cURL extension enabled.
1. Clone the repository:
```sh
git clone https://github.com/heiswayi/web-proxy-script.git
cd web-proxy-script
```2. Start the PHP built-in web server:
```sh
php -S localhost:8000
```3. Open your web browser and navigate to `http://localhost:8000/proxy.php`.
## Using Docker
To build and run the Docker container, follow these steps:
1. Build the Docker image:
```sh
docker build -t web-proxy-script .
```2. Run the Docker container:
```sh
docker run -p 80:80 web-proxy-script
```3. Open your web browser and navigate to `http://localhost/proxy.php`.
## License
[MIT](LICENSE)