10 lines
180 B
YAML
10 lines
180 B
YAML
---
|
|
- name: configure nginx
|
|
template:
|
|
src: nginx.conf.j2
|
|
dest: "{{ nginx_conf_d_path }}/gitea.conf"
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
notify: reload nginx
|