mallory

Reverse proxy with SSL verification


License
MIT
Install
pip install mallory==0.2.2

Documentation

Mallory

Reverse proxy for HTTPS services, with SSL verification.

Build Status

Installation

Execute:

$ pip install mallory

Or install it yourself with:

$ python setup.py install

Usage

$ mallory \
  --port 8001 \
  --ssl-key /etc/ssl/private/proxy-hostname.example.com-key.pem \
  --ssl-cert /etc/ssl/certs/proxy-hostname.example.com-cert.pem \
  --pid-file /var/run/mallory.pid \
  --verify-ca-cert /etc/ssl/certs/ca-certificates.crt \
  https://destination.example.com

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request