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

123456789101112
  1. ---
  2. - name: install nginx
  3. apt:
  4. pkg: nginx-light
  5. - name: nginx vhost configuration
  6. template:
  7. src: nginx.conf.j2
  8. dest: /etc/nginx/nginx.conf
  9. notify:
  10. - reload nginx