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.

nginx.yml 186B

7 jaren geleden
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