forked from bitlair/ansible
15 lines
250 B
YAML
15 lines
250 B
YAML
---
|
|
|
|
- name: Install dependencies
|
|
ansible.builtin.apt:
|
|
name: php-fpm
|
|
state: present
|
|
|
|
- name: Install security.txt
|
|
ansible.builtin.template:
|
|
src: security.txt
|
|
dest: /opt/security.txt
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
|