Skip to content

Commit

Permalink
Version Bump to v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanmorgan committed Aug 10, 2018
1 parent fb655db commit 054ab7c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@

## Echo the requested url and redirect to HTTPS

[![Docker Image](https://img.shields.io/badge/docker-vibrato%2Fhttps--echo-blue.svg)](https://hub.docker.com/r/vibrato/https-echo/)

This is a tiny Go Web server that listens to HTTP requests and redirects them to HTTPS. Intended to run beside an HTTPS protected website or be used in conjunction with a load-balancer to keep HTTPS Everywhere. It compiles to a less than 10MB and can be used in a "FROM scratch" container.

To run, simply download and execute.

./https-echo

## Contributing

Bug reports and pull requests are welcome on GitHub at [https://github.com/vibrato/https-echo](https://github.com/vibrato/https-echo). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
)

const Version = "0.0.2"
const Version = "0.0.3"

var (
httpAddr = flag.String("listen", ":80", "Listen address")
Expand Down

0 comments on commit 054ab7c

Please sign in to comment.