https://github.com/mostlygeek/stunnel-ssl-proxy
Easy creation of an HTTPS proxy with stunnel
https://github.com/mostlygeek/stunnel-ssl-proxy
Last synced: 3 months ago
JSON representation
Easy creation of an HTTPS proxy with stunnel
- Host: GitHub
- URL: https://github.com/mostlygeek/stunnel-ssl-proxy
- Owner: mostlygeek
- Created: 2013-01-07T21:30:45.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-07T21:35:04.000Z (over 12 years ago)
- Last Synced: 2025-02-12T16:51:48.279Z (4 months ago)
- Language: Shell
- Size: 140 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
When I do development it is a pain to set up a web server that can handle HTTPS. Especially when I use node.js I want my development and my production code to be as close as possible. In production node listens on HTTP and a proxy in front provides SSL.
Using `stunnel` gives a lightweight, simple to configure SSL endpoint for doing development.
# Instructions
## TL;DR

## Step 1 - install stunnel
* On OSX, use macports. `sudo port install stunnel`
## Step 2 - run create-cert.sh
* You will get prompted to enter a bunch of SSL cert info
* The only important one is the FQDN, use `localhost` if you're working off of the same machineThese values don't really matter as you're self signing your cert anyways. It'll no doubt fail browser security checks.
So you can enter almost anything. You'll have to manually accept the certificate anyways.## Step 3 -
Run `start-tunnel.sh`