Skip to content

Commit

Permalink
fix(http-01): the provider is creating the directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
tgragnato committed Nov 12, 2024
1 parent ef43c90 commit 8362e1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/inca.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func Spinup(path string) (*Inca, error) {
MaxAge: 86400,
}),
)
inca.Static("/.well-known/acme-challenge/", "/tmp/server/webroot")
inca.Static("/.well-known/acme-challenge/", "/tmp/server/webroot/.well-known/acme-challenge")
incaWeb := inca.Group("/web")
incaWeb.Use(middleware.Session(inca.sessionStore, inca.acl))
incaWeb.Get("/", inca.handlerWebIndex)
Expand Down

0 comments on commit 8362e1b

Please sign in to comment.