diff options
Diffstat (limited to 'modules/caddyhttp/staticresp.go')
| -rw-r--r-- | modules/caddyhttp/staticresp.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/modules/caddyhttp/staticresp.go b/modules/caddyhttp/staticresp.go index a435f87..732a3fb 100644 --- a/modules/caddyhttp/staticresp.go +++ b/modules/caddyhttp/staticresp.go @@ -112,7 +112,7 @@ func (s StaticResponse) ServeHTTP(w http.ResponseWriter, r *http.Request, _ Hand  	// write response body  	if s.Body != "" { -		fmt.Fprint(w, repl.ReplaceAll(s.Body, "")) +		fmt.Fprint(w, repl.ReplaceKnown(s.Body, ""))  	}  	return nil | 
