mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 10:19:09 +00:00 
			
		
		
		
	- Added _normalize_codes to support lists of valid HTTP status codes - Updated web_health_expectations to handle multiple codes, deduplication, and fallback logic - Extended unit tests with coverage for list/default combinations, invalid values, and alias behavior - Fixed Flowise CSP flags and whitelist entries - Adjusted Flowise, MinIO, and Pretix docker service resource limits - Updated docker-compose templates with explicit service_name - Corrected MinIO status_codes to 301 redirects ✅ All CSP errors fixed See details: https://chatgpt.com/share/68d557ad-fc10-800f-b68b-0411d20ea6eb
		
			
				
	
	
		
			44 lines
		
	
	
		
			1000 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1000 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| features:
 | |
|   matomo:           true
 | |
|   css:              true
 | |
|   desktop:          true
 | |
|   central_database: false
 | |
|   logout:           true
 | |
|   javascript:       false
 | |
|   local_ai:         true
 | |
|   oidc:             true
 | |
|   ldap:             false # OIDC is already activated so LDAP isn't necessary
 | |
| server:
 | |
|   status_codes:
 | |
|     api:      301
 | |
|     console:  301
 | |
|   domains:
 | |
|     canonical:
 | |
|       console:  "console.s3.{{ PRIMARY_DOMAIN }}"
 | |
|       api:      "api.s3.{{ PRIMARY_DOMAIN }}"
 | |
|     aliases: []
 | |
|   csp:
 | |
|     flags: {}
 | |
|     whitelist:
 | |
|       font-src: []
 | |
|       connect-src: [] 
 | |
| docker:
 | |
|   services:
 | |
|     minio:
 | |
|       backup:
 | |
|         no_stop_required: false
 | |
|       image:              quay.io/minio/minio
 | |
|       version:            latest
 | |
|       name:               minio
 | |
|       cpus:               "2.0"
 | |
|       mem_reservation:    "2g"
 | |
|       mem_limit:          "4g"
 | |
|       pids_limit:         2048
 | |
|     redis:
 | |
|       enabled: false
 | |
|     database:
 | |
|       enabled: false
 | |
|   volumes: 
 | |
|     data:      minio_data
 | |
| credentials: {}
 |