mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +00:00 
			
		
		
		
	- Un-commented `view.bluesky.{{ PRIMARY_DOMAIN }}` in config to allow
  explicit AppView domain definition.
- Reworked `03_dns.yml` to build `cloudflare_records` list programmatically,
  including conditional addition of AppView records only if the domain is
  not `api.bsky.app`.
- Improved AAAA handling with `| default('')` and proper ternary
  expressions for `present/absent`.
- Updated `vars/main.yml` to remove default port fallback for
  `BLUESKY_VIEW_PORT`.
Refs: https://chatgpt.com/share/68cdde1d-1bd4-800f-a4bb-319372752fcd
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
features:
 | 
						|
  matomo:           true
 | 
						|
  css:              true
 | 
						|
  desktop:          true
 | 
						|
  central_database: false
 | 
						|
  logout:           true
 | 
						|
server:
 | 
						|
  config_upstream_url: "https://ip.bsky.app/config"
 | 
						|
  status_codes:
 | 
						|
    web: 405
 | 
						|
  domains:
 | 
						|
    aliases: []
 | 
						|
    canonical:
 | 
						|
      web:  "web.bluesky.{{ PRIMARY_DOMAIN }}"
 | 
						|
      api:  "api.bluesky.{{ PRIMARY_DOMAIN }}"
 | 
						|
      view: "view.bluesky.{{ PRIMARY_DOMAIN }}"
 | 
						|
  csp:
 | 
						|
    whitelist:
 | 
						|
      connect-src:
 | 
						|
        - "{{ WEB_PROTOCOL }}://<< defaults_applications[web-app-bluesky].server.domains.canonical.api >>"
 | 
						|
        - https://plc.directory
 | 
						|
        - https://bsky.social
 | 
						|
        - https://api.bsky.app
 | 
						|
        - https://public.api.bsky.app
 | 
						|
        - https://events.bsky.app
 | 
						|
        - https://statsigapi.net
 | 
						|
        - https://ip.bsky.app
 | 
						|
        - https://video.bsky.app
 | 
						|
        - https://bsky.app
 | 
						|
        - wss://bsky.network
 | 
						|
        - wss://*.bsky.app
 | 
						|
      media-src:
 | 
						|
        - "blob:"
 | 
						|
      worker-src:
 | 
						|
        - "blob:"
 | 
						|
docker:
 | 
						|
  services:
 | 
						|
    database:
 | 
						|
      enabled: false
 | 
						|
    web:
 | 
						|
      enabled: true  # @see https://github.com/bluesky-social/social-app
 | 
						|
    view:
 | 
						|
      enabled: false
 | 
						|
    pds:
 | 
						|
      image:    "ghcr.io/bluesky-social/pds"
 | 
						|
      version:  "latest"
 | 
						|
  volumes:
 | 
						|
    pds_data:   "pds_data" |