mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	- Renamed role `srv-tls-core` → `sys-svc-certs` - Renamed role `srv-https-stack` → `sys-stk-front-pure` - Renamed role `sys-stk-front` → `sys-stk-front-proxy` - Updated all includes, READMEs, meta, and dependent roles accordingly This improves clarity and consistency of naming conventions for certificate management and proxy orchestration. See: https://chatgpt.com/share/68b19f2c-22b0-800f-ba9b-3f2c8fd427b0
		
			
				
	
	
		
			23 lines
		
	
	
		
			713 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			713 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| - name: "Include setup for domain '{{ domain }}'"
 | |
|   include_role: 
 | |
|     name: sys-stk-front-proxy
 | |
|   loop: "{{ domains['web-app-mastodon'] }}"
 | |
|   loop_control:
 | |
|     loop_var: domain
 | |
|   vars:
 | |
|     http_port:            "{{ ports.localhost.http[application_id] }}"
 | |
|     location_ws:          "/api/v1/streaming"
 | |
|     ws_port:              "{{ ports.localhost.websocket[application_id] }}"
 | |
|     client_max_body_size: "80m"
 | |
|     vhost_flavour:        "ws_generic"
 | |
| 
 | |
| - name: "load docker and db for {{ application_id }}"
 | |
|   include_role: 
 | |
|     name: sys-stk-back-stateful
 | |
|   vars:
 | |
|     docker_compose_flush_handlers: true
 | |
| 
 | |
| - name: "start setup procedures for mastodon"
 | |
|   include_tasks: 01_setup.yml
 | |
|   when: mastodon_setup | bool  |