fileserver: Export BrowseTemplate

This allows programs embedding Caddy to customize the browse template.
This commit is contained in:
Matthew Holt
2023-08-29 09:34:20 -06:00
parent b7e472d548
commit ed8bb13c5d
2 changed files with 10 additions and 4 deletions

View File

@ -66,7 +66,7 @@ respond with a file listing.`,
Short: "Exports the default file browser template",
Example: "caddy file-server export-template > browse.html",
RunE: func(cmd *cobra.Command, args []string) error {
_, err := io.WriteString(os.Stdout, defaultBrowseTemplate)
_, err := io.WriteString(os.Stdout, BrowseTemplate)
return err
},
})