Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

21 строка
458B

  1. ---
  2. - name: apache2 nextcloud vhost
  3. template:
  4. src: apache-vhost.conf.j2
  5. dest: /etc/apache2/sites-available/nextcloud.conf
  6. notify: restart apache2
  7. - name: apache2 nextcloud vhost enabled
  8. file:
  9. src: ../sites-available/nextcloud.conf
  10. dest: /etc/apache2/sites-enabled/nextcloud.conf
  11. state: link
  12. notify: restart apache2
  13. - name: apache2 rewrite module
  14. apache2_module:
  15. name: rewrite
  16. state: present
  17. notify: restart apache2