You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
361 B
13 lines
361 B
---
|
|
|
|
- name: Deploy appsmith server conf
|
|
template: src={{ item }}.j2 dest={{ appsmith_root_dir }}/etc/{{ item }} group={{ appsmith_user }} mode=640
|
|
loop:
|
|
- env
|
|
notify: restart appsmith-server
|
|
tags: appsmith
|
|
|
|
- name: Deploy nginx conf
|
|
template: src=nginx.conf.j2 dest=/etc/nginx/ansible_conf.d/appsmith.conf
|
|
notify: reload nginx
|
|
tags: appsmith
|
|
|