mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	- Fix BookWyrm email SSL/TLS handling (use ternary without 'not' for clarity) - Add truststore_enabled flag in Confluence config and vars - Wire JVM_SUPPORT_RECOMMENDED_ARGS to disable UPM signature check if truststore is disabled - Add placeholder style.css.j2 for Confluence See conversation: https://chatgpt.com/share/68b80024-7100-800f-a2fe-ba8b9f5cec05
		
			
				
	
	
		
			33 lines
		
	
	
		
			728 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			728 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| credentials: {}
 | |
| docker:
 | |
|   services:
 | |
|     database:
 | |
|       enabled:  true
 | |
|     application:
 | |
|       image:    atlassian/confluence
 | |
|       version:  latest
 | |
|       name:     confluence
 | |
|   volumes:
 | |
|     data:       "confluence_data"
 | |
| features:
 | |
|   matomo:           true
 | |
|   css:              true
 | |
|   desktop:          true
 | |
|   central_database: true
 | |
|   logout:           true
 | |
|   oidc:             false # Not enabled for demo version
 | |
|   ldap:             false # Not enabled for demo version
 | |
| server:
 | |
|   csp:
 | |
|     whitelist:      {}
 | |
|     flags:
 | |
|       script-src-elem:
 | |
|         unsafe-inline:  true
 | |
|       script-src:
 | |
|         unsafe-inline:  true
 | |
|   domains:
 | |
|     canonical:
 | |
|       - "confluence.{{ PRIMARY_DOMAIN }}"
 | |
| rbac:
 | |
|   roles: {}
 | |
| truststore_enabled: false |