1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-11-30 08:06:52 +02:00

Fix autocert generation

This commit is contained in:
jhernandezb 2018-01-18 10:33:41 -06:00
parent 4db23fae05
commit 546e0bad00
No known key found for this signature in database
GPG Key ID: 03F7382902919E8C

View File

@ -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),