mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-31 02:27:19 -04:00 
			
		
		
		
	This makes it easier to make "standard" caddy builds, since you'll only need to add a single import to get all of Caddy's standard modules. There is a package for all of Caddy's standard modules (modules/standard) and a package for the HTTP app's standard modules only (modules/caddyhttp/standard). We still need to decide which of these, if not all of them, should be kept in the standard build. Those which aren't should be moved out of this repo. See #2780.
		
			
				
	
	
		
			22 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			1.1 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/httpcache"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/markdown"
 | |
| 	_ "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/rewrite"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/starlarkmw"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/templates"
 | |
| )
 |