mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-16 21:17:34 -06:00
Letsencrypt (#17)
This commit is contained in:
parent
3c539cdfd6
commit
0cbab627c7
6 changed files with 204 additions and 30 deletions
11
internal/config/letsencrypt.go
Normal file
11
internal/config/letsencrypt.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
package config
|
||||
|
||||
// LetsEncryptConfig wraps everything needed to manage letsencrypt certificates from within gotosocial.
|
||||
type LetsEncryptConfig struct {
|
||||
// Should letsencrypt certificate fetching be enabled?
|
||||
Enabled bool
|
||||
// Where should certificates be stored?
|
||||
CertDir string
|
||||
// Email address to pass to letsencrypt for notifications about certificate expiry etc.
|
||||
EmailAddress string
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue