mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-31 10:37:24 -04:00 
			
		
		
		
	* feat: add generic response interceptors * fix: cs * rename intercept * add some docs * @francislavoie review (first round) * Update modules/caddyhttp/intercept/intercept.go Co-authored-by: Francis Lavoie <lavofr@gmail.com> * shorthands: ir to resp * mark exported symbols as experimental --------- Co-authored-by: Francis Lavoie <lavofr@gmail.com>
		
			
				
	
	
		
			26 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package standard
 | |
| 
 | |
| import (
 | |
| 	// standard Caddy HTTP app modules
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/caddyauth"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode/brotli"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode/gzip"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode/zstd"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/fileserver"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/headers"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/intercept"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/logging"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/map"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/proxyprotocol"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/push"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/requestbody"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy/fastcgi"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy/forwardauth"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/rewrite"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/templates"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/tracing"
 | |
| )
 |