Merge pull request #2307 from jhernandezb/fix/autocert
Fix autocert generation
This commit is contained in:
commit
923de1c4f2
1 changed files with 1 additions and 1 deletions
|
@ -584,7 +584,7 @@ func server(c *cli.Context) error {
|
|||
dir := cacheDir()
|
||||
os.MkdirAll(dir, 0700)
|
||||
|
||||
manager := autocert.Manager{
|
||||
manager := &autocert.Manager{
|
||||
Prompt: autocert.AcceptTOS,
|
||||
HostPolicy: autocert.HostWhitelist(address.Host),
|
||||
Cache: autocert.DirCache(dir),
|
||||
|
|
Loading…
Reference in a new issue