mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	- Normalize domain blocks across apps:
  - Add explicit 'aliases: []' everywhere (no implicit aliases)
  - Standardize canonical subdomains for consistency:
    * Bluesky: web/api under *.bluesky.<PRIMARY_DOMAIN>
    * EspoCRM: espo.crm.<PRIMARY_DOMAIN>
    * Gitea:   tea.git.<PRIMARY_DOMAIN>
    * GitLab:  lab.git.<PRIMARY_DOMAIN>
    * Joomla:  joomla.cms.<PRIMARY_DOMAIN>
    * Magento: magento.shop.<PRIMARY_DOMAIN>
    * OpenProject: open.project.<PRIMARY_DOMAIN>
    * Pretix:  ticket.shop.<PRIMARY_DOMAIN>
    * Taiga:   kanban.project.<PRIMARY_DOMAIN>
  - Remove legacy/duplicate aliases and use empty list instead
  - Fix 'alias' -> 'aliases' where applicable
Context: preparing for AUTO_BUILD_ALIASES=False and deterministic redirect mapping.
Ref: conversation https://chatgpt.com/share/68cd512c-c878-800f-bdf2-81737adf7e0e
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| oauth2_proxy:  
 | |
|   application:        "proxy"
 | |
|   port:               "80"
 | |
|   acl:
 | |
|     whitelist:
 | |
|       - "/users/me"           # Necessary for Nextcloud Plugin to work
 | |
|       - "/api/"               # Necessary for Nextcloud Plugin to work
 | |
|       - "/oauth/token"        # Necessary for Nextcloud Plugin to work
 | |
| ldap:
 | |
|   filters:
 | |
|     administrators:   True    # Set true to filter administrators
 | |
|     users:            False   # Set true to filter users
 | |
| features:
 | |
|   matomo:             true
 | |
|   css:                false   # Temporary deactivated. Needs to be optimized for production use.
 | |
|   desktop:            true
 | |
|   ldap:               true
 | |
|   central_database:   true
 | |
|   oauth2:             true
 | |
|   logout:             true
 | |
| server:
 | |
|   csp:
 | |
|     flags:
 | |
|       script-src-elem:
 | |
|         unsafe-inline: true
 | |
|       style-src:
 | |
|         unsafe-inline: true
 | |
|     whitelist:
 | |
|       font-src:
 | |
|         - "data:"
 | |
|   domains:
 | |
|     canonical:
 | |
|       - "open.project.{{ PRIMARY_DOMAIN }}"
 | |
|     aliases: []
 | |
| docker:
 | |
|   services:
 | |
|     database:
 | |
|       enabled: true
 | |
|     web:
 | |
|       name:     openproject-web
 | |
|       image:    openproject/community
 | |
|       version:  "13"    # Update when available. No rolling release implemented
 | |
|       backup:
 | |
|         no_stop_required: true
 | |
|     seeder:
 | |
|       name:     openproject-seeder
 | |
|     cron:
 | |
|       name:     openproject-cron
 | |
|     worker:
 | |
|       name:     openproject-worker
 | |
|     proxy:
 | |
|       name:     openproject-proxy
 | |
|     cache:
 | |
|       name:     openproject-cache
 | |
|       image:    "" # If need a specific memcached image you have to define it here, otherwise the version from svc-db-memcached will be used
 | |
|       version:  "" # If need a specific memcached version you have to define it here, otherwise the version from svc-db-memcached will be used
 | |
|     
 | |
|   volumes:
 | |
|     data: "openproject_data"
 |