mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-03 19:58:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
docker:
 | 
						|
  services:
 | 
						|
    redis:
 | 
						|
      enabled:  false # No redis needed
 | 
						|
    database:
 | 
						|
      enabled:  false # No database needed
 | 
						|
features:
 | 
						|
  matomo:       true  # activate tracking
 | 
						|
  css:          true  # use custom infinito stile 
 | 
						|
  desktop:      true  # Enable in desktop
 | 
						|
  logout:       false
 | 
						|
server:
 | 
						|
  csp:
 | 
						|
    whitelist:
 | 
						|
      script-src-elem:
 | 
						|
        - https://cdn.jsdelivr.net
 | 
						|
        - https://kit.fontawesome.com
 | 
						|
        - https://code.jquery.com/
 | 
						|
        - https://unpkg.com/
 | 
						|
      style-src-elem:
 | 
						|
        - https://cdn.jsdelivr.net
 | 
						|
        - https://cdnjs.cloudflare.com
 | 
						|
      font-src:
 | 
						|
        - https://cdnjs.cloudflare.com
 | 
						|
        - https://ka-f.fontawesome.com
 | 
						|
        - https://cdn.jsdelivr.net
 | 
						|
      connect-src:
 | 
						|
        - https://ka-f.fontawesome.com
 | 
						|
      frame-ancestors:
 | 
						|
        - "*" # No damage if it's used somewhere on other websites, it anyhow looks like art
 | 
						|
    flags:
 | 
						|
      style-src:
 | 
						|
        unsafe-inline: true
 | 
						|
  domains:
 | 
						|
    canonical:
 | 
						|
      - "mig.{{ PRIMARY_DOMAIN }}"
 | 
						|
    aliases:
 | 
						|
      - "meta-infinite-graph.{{ PRIMARY_DOMAIN }}"
 | 
						|
 | 
						|
build_data: 
 | 
						|
  # This shouldn't be relevant anymore, because the data is anyhow build async in background
 | 
						|
  # Enables the building of the meta data which the graph requiers
 | 
						|
  enabled:  true
 | 
						|
 |