Files
deploy_home/ansible/roles/podman/tasks/containers/base/conf-nginx.yml
2024-02-01 15:35:11 -05:00

24 lines
482 B
YAML

---
- name: create letsencrypt shared root srv directory
become: true
ansible.builtin.file:
path: /srv/http/letsencrypt
owner: "{{ podman_user }}"
group: "{{ podman_user }}"
mode: 0755
state: directory
tags:
- ssl
- https
- import_tasks: conf-nginx-http.yml
- import_tasks: conf-nginx-https.yml
- import_tasks: conf-nginx-modsec.yml
- name: flush handlers
ansible.builtin.meta: flush_handlers
tags:
- http
- modsec
- modsec_rules