From: Bjørn Erik Pedersen Date: Tue, 26 Sep 2017 16:58:44 +0000 (+0200) Subject: commands: Make noHTTPCache default false X-Git-Tag: v0.29~8 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e94d4f0177852b357f40fb9686a0ff3667d86351;p=brevno-suite%2Fhugo commands: Make noHTTPCache default false The other way was a mistake. --- diff --git a/commands/server.go b/commands/server.go index 312aa509..b52e38c1 100644 --- a/commands/server.go +++ b/commands/server.go @@ -89,7 +89,7 @@ func init() { serverCmd.Flags().IntVar(&liveReloadPort, "liveReloadPort", -1, "port for live reloading (i.e. 443 in HTTPS proxy situations)") serverCmd.Flags().StringVarP(&serverInterface, "bind", "", "127.0.0.1", "interface to which the server will bind") serverCmd.Flags().BoolVarP(&serverWatch, "watch", "w", true, "watch filesystem for changes and recreate as needed") - serverCmd.Flags().BoolVar(&noHTTPCache, "noHTTPCache", true, "prevent HTTP caching") + serverCmd.Flags().BoolVar(&noHTTPCache, "noHTTPCache", false, "prevent HTTP caching") serverCmd.Flags().BoolVarP(&serverAppend, "appendPort", "", true, "append port to baseURL") serverCmd.Flags().BoolVar(&disableLiveReload, "disableLiveReload", false, "watch without enabling live browser reload on rebuild") serverCmd.Flags().BoolVar(&navigateToChanged, "navigateToChanged", false, "navigate to changed content file on live browser reload")