mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +00:00 
			
		
		
		
	Config: set database.type=postgres; use image tag lts-<dbtype>-tomcat; make DB_TYPE templated; derive database_type from app config. Cleanup: delete hibernate.cfg.xml template and volume mounts; remove XWIKI_HOST_HIBERNATE_PATH; stop rendering hibernate.cfg.xml. web-svc-cdn: run_once task fix. Context: troubleshooting on 2025-09-12. Conversation link: https://chatgpt.com/share/68c3978e-77cc-800f-beda-19220f70855f
		
			
				
	
	
		
			20 lines
		
	
	
		
			493 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			493 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
- name: Include dependencies
 | 
						|
  include_role:
 | 
						|
    name: '{{ item }}'
 | 
						|
  loop:
 | 
						|
  - sys-stk-front-pure
 | 
						|
  - 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 |