mirror of
https://github.com/Apress/Beginning-Ansible-Concepts-and-Application.git
synced 2024-11-09 17:07:44 +01:00
18 lines
406 B
YAML
18 lines
406 B
YAML
---
|
|
- name: Download and unarchive Wordpress
|
|
unarchive:
|
|
src: https://wordpress.org/latest.tar.gz
|
|
remote_src: True
|
|
owner: root
|
|
group: www-data
|
|
dest: "/var/www/html/"
|
|
creates: "/var/www/html/wordpress"
|
|
|
|
- name: Configure Wordpress
|
|
template:
|
|
src: "wp-config.php.j2"
|
|
dest: "/var/www/html/wordpress/wp-config.php"
|
|
owner: root
|
|
group: www-data
|
|
mode: 'u=rw,g=r,o='
|
|
|