mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	- Improved OIDC variable definitions (12_oidc.yml) - Added account/security/profile URLs - Restructured web-app-desktop tasks and JS handling - Introduced oidc.js and iframe.js with runtime loader - Fixed nginx.conf, LDAP, and healthcheck templates spacing - Improved Lua injection for CSP and snippets - Fixed typos (WordPress, receive, etc.) - Added silent-check-sso nginx location Conversation: https://chatgpt.com/share/68ae0060-4fac-800f-9f02-22592a4087d3
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| features:
 | |
|   matomo:       true
 | |
|   css:          true
 | |
|   desktop:      false
 | |
|   oidc:         true      # Needs to be activated so that the login url is working
 | |
|   simpleicons:  true      # Activate Brand Icons for your groups
 | |
|   javascript:   true      # Necessary for URL sync
 | |
|   logout:       true
 | |
| server:
 | |
|   csp:
 | |
|     whitelist:
 | |
|       script-src-elem:
 | |
|         - https://cdn.jsdelivr.net
 | |
|         - https://kit.fontawesome.com
 | |
|         - https://code.jquery.com/
 | |
|       style-src:
 | |
|         - https://cdn.jsdelivr.net
 | |
|       font-src:
 | |
|         - https://ka-f.fontawesome.com
 | |
|         - https://cdn.jsdelivr.net
 | |
|       connect-src:
 | |
|         - https://ka-f.fontawesome.com
 | |
|         - "{{ WEB_PROTOCOL }}://auth.{{ PRIMARY_DOMAIN }}" 
 | |
|       frame-src:
 | |
|         - "{{ WEB_PROTOCOL }}://*.{{ PRIMARY_DOMAIN }}"
 | |
|     flags:
 | |
|       style-src:
 | |
|         unsafe-inline: true
 | |
|       script-src:
 | |
|         unsafe-inline: true
 | |
|       script-src-elem:
 | |
|         unsafe-inline: true
 | |
|   domains:
 | |
|     canonical:
 | |
|       - "{{ PRIMARY_DOMAIN }}"
 | |
| docker: 
 | |
|   services:
 | |
|     desktop:
 | |
|       name:   "desktop"
 | |
|       image:  "application-portfolio" |