mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-28 09:12:52 -04:00 
			
		
		
		
	
		
			Some checks are pending
		
		
	
	Tests / test (./cmd/caddy/caddy, ~1.22.3, macos-14, 0, 1.22, mac) (push) Waiting to run
				
			Tests / test (./cmd/caddy/caddy, ~1.22.3, ubuntu-latest, 0, 1.22, linux) (push) Waiting to run
				
			Tests / test (./cmd/caddy/caddy, ~1.23.0, macos-14, 0, 1.23, mac) (push) Waiting to run
				
			Tests / test (./cmd/caddy/caddy, ~1.23.0, ubuntu-latest, 0, 1.23, linux) (push) Waiting to run
				
			Tests / test (./cmd/caddy/caddy.exe, ~1.22.3, windows-latest, True, 1.22, windows) (push) Waiting to run
				
			Tests / test (./cmd/caddy/caddy.exe, ~1.23.0, windows-latest, True, 1.23, windows) (push) Waiting to run
				
			Tests / test (s390x on IBM Z) (push) Waiting to run
				
			Tests / goreleaser-check (push) Waiting to run
				
			Cross-Build / build (~1.22.3, 1.22, aix) (push) Waiting to run
				
			Cross-Build / build (~1.22.3, 1.22, darwin) (push) Waiting to run
				
			Cross-Build / build (~1.22.3, 1.22, dragonfly) (push) Waiting to run
				
			Cross-Build / build (~1.22.3, 1.22, freebsd) (push) Waiting to run
				
			Cross-Build / build (~1.22.3, 1.22, illumos) (push) Waiting to run
				
			Cross-Build / build (~1.22.3, 1.22, linux) (push) Waiting to run
				
			Cross-Build / build (~1.22.3, 1.22, netbsd) (push) Waiting to run
				
			Cross-Build / build (~1.22.3, 1.22, openbsd) (push) Waiting to run
				
			Cross-Build / build (~1.22.3, 1.22, solaris) (push) Waiting to run
				
			Cross-Build / build (~1.22.3, 1.22, windows) (push) Waiting to run
				
			Cross-Build / build (~1.23.0, 1.23, aix) (push) Waiting to run
				
			Cross-Build / build (~1.23.0, 1.23, darwin) (push) Waiting to run
				
			Cross-Build / build (~1.23.0, 1.23, dragonfly) (push) Waiting to run
				
			Cross-Build / build (~1.23.0, 1.23, freebsd) (push) Waiting to run
				
			Cross-Build / build (~1.23.0, 1.23, illumos) (push) Waiting to run
				
			Cross-Build / build (~1.23.0, 1.23, linux) (push) Waiting to run
				
			Cross-Build / build (~1.23.0, 1.23, netbsd) (push) Waiting to run
				
			Cross-Build / build (~1.23.0, 1.23, openbsd) (push) Waiting to run
				
			Cross-Build / build (~1.23.0, 1.23, solaris) (push) Waiting to run
				
			Cross-Build / build (~1.23.0, 1.23, windows) (push) Waiting to run
				
			Lint / lint (macos-14, mac) (push) Waiting to run
				
			Lint / lint (ubuntu-latest, linux) (push) Waiting to run
				
			Lint / lint (windows-latest, windows) (push) Waiting to run
				
			Lint / govulncheck (push) Waiting to run
				
			* feat: good default for encode * fix tests and add a new one
		
			
				
	
	
		
			101 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| :80
 | |
| 
 | |
| # All the options
 | |
| encode gzip zstd {
 | |
| 	minimum_length 256
 | |
| 	match {
 | |
| 		status 2xx 4xx 500
 | |
| 		header Content-Type text/*
 | |
| 		header Content-Type application/json*
 | |
| 		header Content-Type application/javascript*
 | |
| 		header Content-Type application/xhtml+xml*
 | |
| 		header Content-Type application/atom+xml*
 | |
| 		header Content-Type application/rss+xml*
 | |
| 		header Content-Type application/wasm*
 | |
| 		header Content-Type image/svg+xml*
 | |
| 	}
 | |
| }
 | |
| 
 | |
| # Long way with a block for each encoding
 | |
| encode {
 | |
| 	zstd
 | |
| 	gzip 5
 | |
| }
 | |
| 
 | |
| encode
 | |
| ----------
 | |
| {
 | |
| 	"apps": {
 | |
| 		"http": {
 | |
| 			"servers": {
 | |
| 				"srv0": {
 | |
| 					"listen": [
 | |
| 						":80"
 | |
| 					],
 | |
| 					"routes": [
 | |
| 						{
 | |
| 							"handle": [
 | |
| 								{
 | |
| 									"encodings": {
 | |
| 										"gzip": {},
 | |
| 										"zstd": {}
 | |
| 									},
 | |
| 									"handler": "encode",
 | |
| 									"match": {
 | |
| 										"headers": {
 | |
| 											"Content-Type": [
 | |
| 												"text/*",
 | |
| 												"application/json*",
 | |
| 												"application/javascript*",
 | |
| 												"application/xhtml+xml*",
 | |
| 												"application/atom+xml*",
 | |
| 												"application/rss+xml*",
 | |
| 												"application/wasm*",
 | |
| 												"image/svg+xml*"
 | |
| 											]
 | |
| 										},
 | |
| 										"status_code": [
 | |
| 											2,
 | |
| 											4,
 | |
| 											500
 | |
| 										]
 | |
| 									},
 | |
| 									"minimum_length": 256,
 | |
| 									"prefer": [
 | |
| 										"gzip",
 | |
| 										"zstd"
 | |
| 									]
 | |
| 								},
 | |
| 								{
 | |
| 									"encodings": {
 | |
| 										"gzip": {
 | |
| 											"level": 5
 | |
| 										},
 | |
| 										"zstd": {}
 | |
| 									},
 | |
| 									"handler": "encode",
 | |
| 									"prefer": [
 | |
| 										"zstd",
 | |
| 										"gzip"
 | |
| 									]
 | |
| 								},
 | |
| 								{
 | |
| 									"encodings": {
 | |
| 										"gzip": {},
 | |
| 										"zstd": {}
 | |
| 									},
 | |
| 									"handler": "encode",
 | |
| 									"prefer": [
 | |
| 										"zstd",
 | |
| 										"gzip"
 | |
| 									]
 | |
| 								}
 | |
| 							]
 | |
| 						}
 | |
| 					]
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| }
 |