삽더하기실수
Ubuntu Ansible-playbook nginx 설치 본문
728x90
nginx_install.yml
- name: Install nginx on Ubuntu
hosts: Ubuntu
gather_facts: no
become: yes
tasks:
- name: install nginx web server
apt: pkg=nginx state=present update_cache=yes
- name: Donwload default index.html for web server
get_url: url=https://www.apache.com dest=/usr/share/nginx/html mode=0644 validate_certs=no
bash 실행하기
ansible-playbook nginx_install.yml -k
728x90
'Ansible' 카테고리의 다른 글
Ansible 기본 정리 (0) | 2024.04.13 |
---|---|
Ansible-playbook window,Centos,Ubuntu timezone.yml (0) | 2023.09.03 |
ansible-playbook 공유 풀더 만들기 (0) | 2023.08.27 |
ansible-playbook nfs 일치시키기 (0) | 2023.08.27 |
엔서블 코어 사용 준비 (0) | 2023.08.13 |