An open API service indexing awesome lists of open source software.

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

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
```