https://github.com/artem78/https_to_http_proxy
https://github.com/artem78/https_to_http_proxy
http https proxy proxy-server python python3 server web
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/artem78/https_to_http_proxy
- Owner: artem78
- Created: 2025-04-15T09:28:13.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-04-15T10:21:02.000Z (9 months ago)
- Last Synced: 2025-04-15T11:32:26.894Z (9 months ago)
- Topics: http, https, proxy, proxy-server, python, python3, server, web
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Simple proxy to get https pages with http. May be used for old systems or for debug/test purposes.
# Requirements
* Linux machine
* Python 3
* Python modules: flask and requests
# Usage
## Configure and run proxy
Install python modules
```
pip install -r requirements.txt
```
Run web server
```
python3 https_to_http_proxy.py
```
## Or with Docker
```
docker-compose up --build
```
or in the background
```
docker-compose up --build -d
```
## Test it
Make get request with curl
```
curl -v http://127.0.0.1:8088/proxy?url=https%3A%2F%2Fhttpbin.org%2Fget
```