mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 12:18:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			334 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			334 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
- name: "include role for {{ application_id }} to receive certs & do modification routines"
 | 
						|
  include_role:
 | 
						|
    name: sys-util-csp-cert
 | 
						|
 | 
						|
- name: configure {{ domain }}.conf
 | 
						|
  template:
 | 
						|
    src:  "templates/peertube.conf.j2"
 | 
						|
    dest: "{{ [ NGINX.DIRECTORIES.HTTP.SERVERS, domain ~ '.conf'] | path_join }}"
 | 
						|
  notify: restart openresty
 |