mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-31 02:27:19 -04:00 
			
		
		
		
	* pki: Initial commit of PKI app (WIP) (see #2502 and #3021) * pki: Ability to use root/intermediates, and sign with root * pki: Fix benign misnamings left over from copy+paste * pki: Only install root if not already trusted * Make HTTPS port the default; all names use auto-HTTPS; bug fixes * Fix build - what happened to our CI tests?? * Fix go.mod
		
			
				
	
	
		
			16 lines
		
	
	
		
			644 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			644 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package standard
 | |
| 
 | |
| import (
 | |
| 	// standard Caddy modules
 | |
| 	_ "github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
 | |
| 	_ "github.com/caddyserver/caddy/v2/caddyconfig/json5"
 | |
| 	_ "github.com/caddyserver/caddy/v2/caddyconfig/jsonc"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/standard"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddypki"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddytls"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddytls/distributedstek"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/caddytls/standardstek"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/filestorage"
 | |
| 	_ "github.com/caddyserver/caddy/v2/modules/logging"
 | |
| )
 |