You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
327 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. ---
  2. - name: Update packages
  3. shell: apt update
  4. - name: Install nginx
  5. shell: apt install nginx -y
  6. - name: Enable nginx
  7. shell: systemctl enable nginx
  8. - name: Copy nginx config
  9. copy:
  10. src: 'octobercms.conf'
  11. dest: '/etc/nginx/includes.d'
  12. mode: 0744
  13. - name: Restart nginx
  14. shell: systemctl restart nginx
  15. ...