[PR #4189] [MERGED] add letsencrypt to Gitea #17275

Closed
opened 2025-11-02 12:31:27 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/4189
Author: @ghost
Created: 6/8/2018
Status: Merged
Merged: 8/21/2018
Merged by: @techknowlogick

Base: masterHead: letsencrypt


📝 Commits (10+)

  • aa3fccb add letsencrypt to Gitea
  • 2771df7 downgrade cypto lib
  • dd01b57 fix typo
  • ce3840f update docs
  • 95a4191 Merge branch 'master' into letsencrypt
  • c56d4a2 let user customize directory and set email
  • 1d0097a Update to using named port
  • caa2d3a Merge branch 'master' into letsencrypt
  • 6bbf48c add docs
  • 42411f8 redirect to AppURL instead of assuming port 443

📊 Changes

35 files changed (+4518 additions, -280 deletions)

View changed files

📝 Gopkg.lock (+5 -1)
📝 Gopkg.toml (+1 -1)
📝 cmd/web.go (+33 -0)
📝 docs/content/doc/advanced/config-cheat-sheet.en-us.md (+5 -0)
📝 docs/content/doc/usage/https-support.md (+18 -0)
📝 modules/setting/setting.go (+12 -0)
vendor/golang.org/x/crypto/acme/acme.go (+1065 -0)
vendor/golang.org/x/crypto/acme/autocert/autocert.go (+962 -0)
vendor/golang.org/x/crypto/acme/autocert/cache.go (+130 -0)
vendor/golang.org/x/crypto/acme/autocert/listener.go (+160 -0)
vendor/golang.org/x/crypto/acme/autocert/renewal.go (+141 -0)
vendor/golang.org/x/crypto/acme/jws.go (+153 -0)
vendor/golang.org/x/crypto/acme/types.go (+329 -0)
📝 vendor/golang.org/x/crypto/ed25519/ed25519.go (+10 -3)
📝 vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go (+22 -0)
vendor/golang.org/x/crypto/internal/chacha20/chacha_generic.go (+223 -0)
vendor/golang.org/x/crypto/internal/chacha20/xor.go (+43 -0)
vendor/golang.org/x/crypto/poly1305/poly1305.go (+33 -0)
vendor/golang.org/x/crypto/poly1305/sum_amd64.go (+22 -0)
vendor/golang.org/x/crypto/poly1305/sum_amd64.s (+125 -0)

...and 15 more files

📄 Description

Fix #1167


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-gitea/gitea/pull/4189 **Author:** [@ghost](https://github.com/ghost) **Created:** 6/8/2018 **Status:** ✅ Merged **Merged:** 8/21/2018 **Merged by:** [@techknowlogick](https://github.com/techknowlogick) **Base:** `master` ← **Head:** `letsencrypt` --- ### 📝 Commits (10+) - [`aa3fccb`](https://github.com/go-gitea/gitea/commit/aa3fccbe3c76804d02fd4fa444c35048393afe81) add letsencrypt to Gitea - [`2771df7`](https://github.com/go-gitea/gitea/commit/2771df70ae693aa21eca897140bac72ab096a9b7) downgrade cypto lib - [`dd01b57`](https://github.com/go-gitea/gitea/commit/dd01b571ad08a9fac63faff91ddc4a66c400c9c2) fix typo - [`ce3840f`](https://github.com/go-gitea/gitea/commit/ce3840ffd23e9aded4c58bd56ed56dda94b859f6) update docs - [`95a4191`](https://github.com/go-gitea/gitea/commit/95a419199e051c708271df213a5c8fda702070c5) Merge branch 'master' into letsencrypt - [`c56d4a2`](https://github.com/go-gitea/gitea/commit/c56d4a2003e79beeada91c76e076577145aa6c9f) let user customize directory and set email - [`1d0097a`](https://github.com/go-gitea/gitea/commit/1d0097a3aa0d531f7c248aff6cc078024fada283) Update to using named port - [`caa2d3a`](https://github.com/go-gitea/gitea/commit/caa2d3aa784eb4e81adc7e679bab042f6f7a2853) Merge branch 'master' into letsencrypt - [`6bbf48c`](https://github.com/go-gitea/gitea/commit/6bbf48ce0380bac80514e833f5ebd0824497ab67) add docs - [`42411f8`](https://github.com/go-gitea/gitea/commit/42411f8ea40f7a103159c9e76d31d3e6aad0ecf0) redirect to AppURL instead of assuming port 443 ### 📊 Changes **35 files changed** (+4518 additions, -280 deletions) <details> <summary>View changed files</summary> 📝 `Gopkg.lock` (+5 -1) 📝 `Gopkg.toml` (+1 -1) 📝 `cmd/web.go` (+33 -0) 📝 `docs/content/doc/advanced/config-cheat-sheet.en-us.md` (+5 -0) 📝 `docs/content/doc/usage/https-support.md` (+18 -0) 📝 `modules/setting/setting.go` (+12 -0) ➕ `vendor/golang.org/x/crypto/acme/acme.go` (+1065 -0) ➕ `vendor/golang.org/x/crypto/acme/autocert/autocert.go` (+962 -0) ➕ `vendor/golang.org/x/crypto/acme/autocert/cache.go` (+130 -0) ➕ `vendor/golang.org/x/crypto/acme/autocert/listener.go` (+160 -0) ➕ `vendor/golang.org/x/crypto/acme/autocert/renewal.go` (+141 -0) ➕ `vendor/golang.org/x/crypto/acme/jws.go` (+153 -0) ➕ `vendor/golang.org/x/crypto/acme/types.go` (+329 -0) 📝 `vendor/golang.org/x/crypto/ed25519/ed25519.go` (+10 -3) 📝 `vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go` (+22 -0) ➕ `vendor/golang.org/x/crypto/internal/chacha20/chacha_generic.go` (+223 -0) ➕ `vendor/golang.org/x/crypto/internal/chacha20/xor.go` (+43 -0) ➕ `vendor/golang.org/x/crypto/poly1305/poly1305.go` (+33 -0) ➕ `vendor/golang.org/x/crypto/poly1305/sum_amd64.go` (+22 -0) ➕ `vendor/golang.org/x/crypto/poly1305/sum_amd64.s` (+125 -0) _...and 15 more files_ </details> ### 📄 Description Fix #1167 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-02 12:31:27 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#17275