https://github.com/tkers/docker-tls-rev-proxy
https://github.com/tkers/docker-tls-rev-proxy
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tkers/docker-tls-rev-proxy
- Owner: tkers
- Created: 2017-03-28T13:12:54.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-28T13:13:13.000Z (about 8 years ago)
- Last Synced: 2025-02-14T22:36:26.341Z (4 months ago)
- Language: Nginx
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TLS Reverse Proxy
## Build
```bash
./build.sh
```## Run
```bash
docker run --volume ~/ssl/certs:/etc/nginx/certs --link myapp:backend tlsrevproxy
```The mounted volume (`~/ssl/certs`) should contain both a `selfsigned.crt` and `selfsigned.key` file.
This proxies all HTTPS requests to your `myapp` container (as HTTP requests). Port `80` should be exposed on `myapp`.