 322c88612a
			
		
	
	322c88612a
	
	
	
		
			
			- Configure Caddy to proxy /api requests to backend service - Add favicon_big.png for various icon size needs 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			264 B
		
	
	
	
		
			Caddyfile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			264 B
		
	
	
	
		
			Caddyfile
		
	
	
	
	
	
| {
 | |
|     default_sni rcjohnstone.com
 | |
|     key_type rsa4096
 | |
|     email c@rcjohnstone.com
 | |
| }
 | |
| 
 | |
| :80, :443 {
 | |
|     @backend {
 | |
|         path /api /api/*
 | |
|     }
 | |
|     reverse_proxy @backend calendar-backend:3000
 | |
|     try_files {path} /index.html
 | |
|     root * /srv/www
 | |
|     file_server
 | |
| }
 |