Skip to content

Commit

Permalink
Remove public as suggested.
Browse files Browse the repository at this point in the history
  • Loading branch information
lapo-luchini committed Dec 12, 2024
1 parent 13aae9a commit d09c7fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/conformance/posix/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func main() {
// This makes it easier to test this implementation from another machine.
fs := http.FileServer(http.Dir(*storageDir))
http.Handle("GET /checkpoint", addCacheHeaders("no-cache", fs))
http.Handle("GET /tile/", addCacheHeaders("public, max-age=31536000, immutable", fs))
http.Handle("GET /tile/", addCacheHeaders("max-age=31536000, immutable", fs))
http.Handle("GET /", fs)

// TODO(mhutchinson): Change the listen flag to just a port, or fix up this address formatting
Expand Down

0 comments on commit d09c7fd

Please sign in to comment.