暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

blog.yml 470B

1234567891011
  1. - name: Create directory for blog HTML
  2. file: state=directory path=/var/www/${blog_domain} group=www-data owner=www-data
  3. - name: Configure the Apache HTTP server for the blog
  4. template: src=etc_apache2_sites-available_blog.j2 dest=/etc/apache2/sites-available/${blog_domain} group=www-data owner=www-data
  5. notify: restart apache
  6. - name: Enable blog site
  7. command: a2ensite ${blog_domain} creates=/etc/apache2/sites-enabled/${blog_domain}
  8. notify: restart apache