NGINX.COM
Web Server Load Balancing with NGINX Plus

NGINX, Inc. has been hard at work following the release of the original, separate Ansible roles for NGINX Open Source and NGINX Plus. We are now releasing a new, unified NGINX Ansible role.

This new Ansible role replaces the previous separate Ansible roles, which are no longer being maintained or updated. We will continue to develop the new Ansible role to support customer use cases as they change.

The new Ansible role can install either NGINX Open Source or NGINX Plus and has additional features, including:

The new NGINX Ansible role is hosted at Ansible Galaxy, a free site for sharing, finding, and downloading roles. Downloading Ansible roles from Ansible Galaxy is a great way to jump‑start your automation projects.

Installing the new NGINX Ansible role from Ansible Galaxy is very simple. Run:

$ ansible-galaxy install nginxinc.nginx

You can then deploy NGINX or NGINX Plus on a local machine with a simple Ansible playbook:

---
- hosts: localhost
  remote_user: root
  roles:
    - nginxinc.nginx

You can also configure Ansible to deploy to a cloud provider using a dynamic inventory. For sample instructions for an AWS EC2 inventory, see the AWS blog.

For example, the following playbook deploys NGINX to a dynamic inventory containing the user_ubuntu tag:

---
- hosts: tag_user_ubuntu
  become: true
  remote_user: ubuntu
  roles:
    - nginxinc.nginx

Deploying NGINX Plus within a cloud provider additionally requires you to define the location of the certificate and key for your NGINX Plus subscription. The recommended pathway for the license is the files subfolder within the NGINX Ansible role. To use a different location, specify it using Ansible variables.

---
- hosts: tag_user_ubuntu
  become: true
  remote_user: ubuntu
  roles:
    - nginxinc.nginx
  vars:
    type: plus
    license:
      certificate: /path/to/certificate
      key: /path/to/key

For more details, including the list of variables you can specify, visit the GitHub repository for the NGINX Ansible role. We also welcome your questions and contributions on GitHub.

Hero image
免费白皮书:
NGINX 企阅版全解析

助力企业用户规避开源治理风险,应对开源使用挑战

关于作者

Alessandro Fael Garcia

Technical Marketing Engineer

关于 F5 NGINX

F5, Inc. 是备受欢迎的开源软件 NGINX 背后的商业公司。我们为现代应用的开发和交付提供一整套技术。我们的联合解决方案弥合了 NetOps 和 DevOps 之间的横沟,提供从代码到用户的多云应用服务。访问 nginx-cn.net 了解更多相关信息。