25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

nginx.yml 186B

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