From: Bjørn Erik Pedersen Date: Sat, 23 Sep 2017 19:17:51 +0000 (+0200) Subject: Make noHTTPCache default on X-Git-Tag: v0.28~9 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=80c7ea60a0e0f488563a6b7311f3d4c23457aac7;p=brevno-suite%2Fhugo Make noHTTPCache default on This is a development server, so that makes the most sense. See #3897 --- diff --git a/commands/server.go b/commands/server.go index b52e38c1..312aa509 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", false, "prevent HTTP caching") + serverCmd.Flags().BoolVar(&noHTTPCache, "noHTTPCache", true, "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")