mirror of
https://github.com/mmatczuk/go-http-tunnel.git
synced 2026-05-15 14:16:17 -06:00
[PR #69] [CLOSED] Lets Encrypt support #139
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/go-http-tunnel#139
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/mmatczuk/go-http-tunnel/pull/69
Author: @jhernandezb
Created: 1/14/2018
Status: ❌ Closed
Base:
master← Head:feature/lets-encrypt📝 Commits (5)
96851bbdep: add acme/autocert dependency19bc47ccmd: add support for lets encrypt autocerts3828d9bcmd/tunneld: allow dynamic certs generation for subscribed clientsf69127bcmd/tunneld: update docs, enforce https traffic, added address validations, default certs cache dir8d96dcbcmd/tunneld: fix address validation📊 Changes
306 files changed (+73932 additions, -23 deletions)
View changed files
📝
Gopkg.lock(+7 -1)📝
Gopkg.toml(+4 -0)📝
README.md(+10 -1)📝
cmd/tunneld/options.go(+26 -18)📝
cmd/tunneld/tunneld.go(+99 -3)➕
cmd/tunneld/tunneld_test.go(+66 -0)➕
vendor/golang.org/x/crypto/.gitattributes(+10 -0)➕
vendor/golang.org/x/crypto/.gitignore(+2 -0)➕
vendor/golang.org/x/crypto/AUTHORS(+3 -0)➕
vendor/golang.org/x/crypto/CONTRIBUTING.md(+31 -0)➕
vendor/golang.org/x/crypto/CONTRIBUTORS(+3 -0)➕
vendor/golang.org/x/crypto/LICENSE(+27 -0)➕
vendor/golang.org/x/crypto/PATENTS(+22 -0)➕
vendor/golang.org/x/crypto/README.md(+21 -0)➕
vendor/golang.org/x/crypto/acme/acme.go(+1058 -0)➕
vendor/golang.org/x/crypto/acme/acme_test.go(+1352 -0)➕
vendor/golang.org/x/crypto/acme/autocert/autocert.go(+973 -0)➕
vendor/golang.org/x/crypto/acme/autocert/autocert_test.go(+757 -0)➕
vendor/golang.org/x/crypto/acme/autocert/cache.go(+130 -0)➕
vendor/golang.org/x/crypto/acme/autocert/cache_test.go(+58 -0)...and 80 more files
📄 Description
This PR adds support for Let's Encrypt by setting two new flags
For lets encrypt port 80 and 443 are mandatory so httpAddr and httpsAddr will ignore the port but will still be able to bind to a specific host.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.