본문 바로가기
Ansible

nginx_install.yml

by 도경다경 2022. 3. 31.
반응형

---
- name: Install nginx on linux
  hosts: nginx
  gather_facts: no
  
  tasks:
    - name: install epel-release
      yum: name=epel-release state=latest
    - name: install nginx web server
      yum: name=nginx state=present
    - name: upload default index.html for web server
      get_url: url=https://www.nginx.com dest=/usr/share/nginx/html mode=0644
    - name: start nginx web server
      service: name=nginx state=started 

반응형

'Ansible' 카테고리의 다른 글

Ansible playbook test  (0) 2023.02.01
Ansible 설치 및 ping test  (0) 2023.02.01
Ansible ssh-keygen 귀찮을 때  (0) 2022.05.23
ping 모듈 테스트 시 에러  (0) 2022.04.11
ansible 구축/실행 명령어 모음  (0) 2022.03.31

댓글