diff options
| author | Matthew Holt <mholt@users.noreply.github.com> | 2019-09-06 12:36:45 -0600 | 
|---|---|---|
| committer | Matthew Holt <mholt@users.noreply.github.com> | 2019-09-06 12:36:45 -0600 | 
| commit | 14f9662f9cc0f93e88d5efbbaf10de79070bea93 (patch) | |
| tree | 060655e7cc8369f6572df607d99d5f912f475d0f /modules/caddyhttp/templates | |
| parent | 21d7b662e76feeb506cae9a616d92d85326566bd (diff) | |
Various fixes/tweaks to HTTP placeholder variables and file matching
- Rename http.var.* -> http.vars.* to be more consistent
- Prefixing a path matcher with * now invokes simple suffix matching
- Handlers and matchers that need a root path default to {http.vars.root}
- Clean replacer output on the file matcher's file selection suffix
Diffstat (limited to 'modules/caddyhttp/templates')
| -rw-r--r-- | modules/caddyhttp/templates/caddyfile.go | 5 | ||||
| -rw-r--r-- | modules/caddyhttp/templates/templates.go | 3 | 
2 files changed, 3 insertions, 5 deletions
| diff --git a/modules/caddyhttp/templates/caddyfile.go b/modules/caddyhttp/templates/caddyfile.go index d948da0..1336a60 100644 --- a/modules/caddyhttp/templates/caddyfile.go +++ b/modules/caddyhttp/templates/caddyfile.go @@ -53,10 +53,5 @@ func parseCaddyfile(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error)  			}  		}  	} - -	if t.IncludeRoot == "" { -		t.IncludeRoot = "{http.var.root}" -	} -  	return t, nil  } diff --git a/modules/caddyhttp/templates/templates.go b/modules/caddyhttp/templates/templates.go index 1cd347c..05a2f63 100644 --- a/modules/caddyhttp/templates/templates.go +++ b/modules/caddyhttp/templates/templates.go @@ -50,6 +50,9 @@ func (t *Templates) Provision(ctx caddy.Context) error {  	if t.MIMETypes == nil {  		t.MIMETypes = defaultMIMETypes  	} +	if t.IncludeRoot == "" { +		t.IncludeRoot = "{http.vars.root}" +	}  	return nil  } | 
