mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	- Extract common HTTPS + Cloudflare + handler bootstrap into new role sys-stk-front-base - Update sys-stk-front-proxy, web-svc-cdn, web-svc-file, web-svc-html to depend on sys-stk-front-base - Add new sys-stk-semi-stateless role combining front-base + back-stateless - Update web-svc-coturn to use sys-stk-semi-stateless and rewrite README/meta with detailed Coturn description - Unify sys-util-csp-cert README heading Ref: ChatGPT conversation https://chatgpt.com/share/68d6cea2-3570-800f-acb3-c3277317f17b
		
			
				
	
	
		
			20 lines
		
	
	
		
			493 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			493 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| - name: Include dependencies
 | |
|   include_role:
 | |
|     name: '{{ item }}'
 | |
|   loop:
 | |
|   - sys-stk-front-base
 | |
|   - dev-git
 | |
|   
 | |
| - name: "include role for {{ application_id }} to receive certs & do modification routines"
 | |
|   include_role:
 | |
|     name: sys-util-csp-cert
 | |
|   vars:
 | |
|     http_port: "{{ ports.localhost.http[application_id] }}"
 | |
| 
 | |
| - name: "deploy '{{ CDN_NGINX_PATH }}'"
 | |
|   template:
 | |
|     src: "nginx.conf.j2"
 | |
|     dest: "{{ CDN_NGINX_PATH }}"
 | |
|   notify: restart openresty
 | |
| 
 | |
| - include_tasks: utils/run_once.yml |