21 lines
327 B
YAML
21 lines
327 B
YAML
---
|
|
|
|
- name: Update packages
|
|
shell: apt update
|
|
|
|
- name: Install nginx
|
|
shell: apt install nginx -y
|
|
|
|
- name: Enable nginx
|
|
shell: systemctl enable nginx
|
|
|
|
- name: Copy nginx config
|
|
copy:
|
|
src: 'octobercms.conf'
|
|
dest: '/etc/nginx/includes.d'
|
|
mode: 0744
|
|
|
|
- name: Restart nginx
|
|
shell: systemctl restart nginx
|
|
|
|
... |