ansible-role-nginx/README.md

218 lines
8.2 KiB
Markdown
Raw Normal View History

2018-01-10 23:40:01 +01:00
Ansible NGINX Role
==================
[![Ansible Galaxy](https://img.shields.io/badge/galaxy-nginxinc.nginx-5bbdbf.svg)](https://galaxy.ansible.com/nginxinc/nginx)
[![Build Status](https://travis-ci.org/nginxinc/ansible-role-nginx.svg?branch=main)](https://travis-ci.org/nginxinc/ansible-role-nginx)
2018-01-10 23:40:01 +01:00
This role installs NGINX Open Source, NGINX Plus, the NGINX Amplify agent, or NGINX Unit on your target host.
2018-01-10 23:40:01 +01:00
**Note:** This role is still in active development. There may be unidentified issues and the role variables may change as development continues.
2020-08-19 18:39:17 +02:00
**Deprecation Warnings:**
2020-09-15 21:27:06 +02:00
With the advent of Ansible collections and to reduce the overhead of this role, the decision has been made to split this role into three smaller roles:
* The NGINX Ansible role will keep working as is and be used to install and setup NGINX.
* There now is a separate role to manage and create NGINX configurations available [here](https://github.com/nginxinc/ansible-role-nginx-config). Any new issues or PRs related to configuring NGINX should be submitted in the new NGINX Config repository. New issues or PRs related to configuring NGINX submitted in this repository will not be worked on. The NGINX configuration functionalities included in this role will be removed in an upcoming release.
* NGINX Unit now has a separate role available [here](https://github.com/nginxinc/ansible-role-nginx-unit). Any new issues or PRs related to NGINX Unit should be submitted in the new NGINX Unit repository. New issues or PRs related to NGINX Unit submitted in this repository will not be worked on. The NGINX Unit functionalities included in this role will be removed in an upcoming release.
2020-08-19 18:39:17 +02:00
2018-01-10 23:40:01 +01:00
Requirements
------------
2019-11-29 04:32:17 +01:00
**Ansible**
This role was developed and tested with [maintained](https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#release-status) versions of Ansible. Backwards compatibility is not guaranteed.
Instructions on how to install Ansible can be found in the [Ansible website](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html).
**Molecule**
2020-08-20 12:54:09 +02:00
Molecule is used to test the various functionalities of the role.
Instructions on how to install Molecule can be found in the [Molecule website](https://molecule.readthedocs.io/en/latest/installation.html).
Installation
------------
2019-11-29 04:32:17 +01:00
**Ansible Galaxy**
2018-01-10 23:40:01 +01:00
Use `ansible-galaxy install nginxinc.nginx` to install the latest stable release of the role on your system.
**Git**
2018-01-10 23:40:01 +01:00
Use `git clone https://github.com/nginxinc/ansible-role-nginx.git` to pull the latest edge commit of the role from GitHub.
Platforms
---------
2020-09-15 21:27:06 +02:00
The NGINX Ansible role supports all platforms supported by [NGINX Open Source](https://nginx.org/en/linux_packages.html), [NGINX Plus](https://docs.nginx.com/nginx/technical-specs/), the [NGINX Amplify agent](https://github.com/nginxinc/nginx-amplify-doc/blob/master/amplify-faq.md#21-what-operating-systems-are-supported), and [NGINX Unit](https://unit.nginx.org/installation/#official-packages) (you can also use this role to compile NGINX Open Source from source or install it on BSD systems at your own risk):
2018-01-10 23:40:01 +01:00
**NGINX Open Source**
2018-01-10 23:40:01 +01:00
```yaml
Alpine:
- 3.9
- 3.10
- 3.11
- 3.12
CentOS:
- 6
2020-09-15 21:27:06 +02:00
- 7.4+
- 8
Debian:
- stretch
- buster
2020-09-15 21:27:06 +02:00
Red Hat:
- 6
- 7.4+
- 8
SUSE/SLES:
- 12
- 15
Ubuntu:
- xenial
- bionic
2020-09-15 21:27:06 +02:00
- eoan
- focal
```
2018-01-10 23:40:01 +01:00
**NGINX Plus**
2018-01-10 23:40:01 +01:00
```yaml
Alpine:
- 3.9
- 3.10
- 3.11
Amazon Linux:
- 2018.03
Amazon Linux 2:
- any
CentOS:
- 6.5+
- 7.4+
- 8
Debian:
- stretch
- buster
FreeBSD:
- 11.2+
- 12
Oracle Linux:
- 6.5+
- 7.4+
2020-09-15 21:27:06 +02:00
Red Hat:
- 6.5+
- 7.4+
- 8
SUSE/SLES:
- 12
- 15
Ubuntu:
- xenial
- bionic
2020-09-15 21:27:06 +02:00
- eoan
- focal
```
2018-04-09 23:22:13 +02:00
**NGINX Amplify Agent**
```yaml
Amazon Linux:
- 2017.09
CentOS:
- 6
- 7
Debian:
- jessie
- stretch
2020-09-15 21:27:06 +02:00
Red Hat:
- 6
- 7
2020-07-30 12:47:08 +02:00
Ubuntu:
- xenial
- bionic
- focal
```
**NGINX Unit**
2018-04-09 23:22:13 +02:00
```yaml
2020-06-08 15:46:01 +02:00
Amazon Linux:
- 2018.03
2020-06-08 15:46:01 +02:00
Amazon Linux 2:
- any
2020-06-08 15:46:01 +02:00
CentOS:
- 6
- 7
- 8
Debian:
- stretch
- buster
2020-09-15 21:27:06 +02:00
Red Hat:
- 6
- 7
- 8
Ubuntu:
- xenial
- bionic
- focal
```
2018-01-10 23:40:01 +01:00
Role Variables
--------------
2020-09-15 21:27:06 +02:00
This role has multiple variables. The descriptions and defaults for all these variables can be found in the **`defaults/main/`** directory in the following files:
2018-01-10 23:40:01 +01:00
2020-09-09 16:10:42 +02:00
- **[defaults/main/main.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/main.yml):** NGINX installation variables
- **[defaults/main/amplify.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/amplify.yml):** NGINX Amplify agent installation variables
- **[defaults/main/template.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/template.yml):** NGINX configuration templating variables
- **[defaults/main/upload.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/upload.yml):** NGINX configuration/HTML/SSL upload variables
- **[defaults/main/linux.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/linux.yml):** Linux installation variables
- **[defaults/main/bsd.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/bsd.yml):** BSD installation variables
- **[defaults/main/unit.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/unit.yml):** NGINX Unit installation variables
2020-09-15 21:27:06 +02:00
Similarly, descriptions and defaults for preset variables can be found in the **`vars/`** directory in the following files:
2020-09-08 00:44:54 +02:00
2020-09-15 21:27:06 +02:00
- **[vars/main.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/vars/main.yml):** List of supported NGINX platforms and modules
2020-09-08 00:44:54 +02:00
2020-06-04 13:05:38 +02:00
Example Playbooks
-----------------
2018-04-09 23:22:13 +02:00
2020-09-15 21:27:06 +02:00
Working functional playbook examples can be found in the **`molecule/common/`** directory in the following files:
2018-04-09 23:22:13 +02:00
2020-09-09 16:10:42 +02:00
- **[molecule/common/playbooks/default_converge.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/common/playbooks/default_converge.yml):** Install a specific version of NGINX and set up logrotate
- **[molecule/common/playbooks/module_converge.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/common/playbooks/module_converge.yml):** Install various NGINX supported modules
- **[molecule/common/playbooks/plus_converge.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/common/playbooks/plus_converge.yml):** Install NGINX Plus and various NGINX Plus supported modules
2020-09-09 16:10:42 +02:00
- **[molecule/common/playbooks/source_converge.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/common/playbooks/source_converge.yml):** Install NGINX from source
- **[molecule/common/playbooks/stable_push_converge.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/common/playbooks/stable_push_converge.yml):** Install NGINX using the stable branch and push a preexisting config from your system to your NGINX instance
- **[molecule/common/playbooks/template_converge.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/common/playbooks/template_converge.yml):** Use the NGINX configuration templating variables to create an NGINX configuration file
- **[molecule/common/playbooks/unit_converge.yml](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/common/playbooks/unit_converge.yml):** Install NGINX Unit
2018-01-10 23:40:01 +01:00
2020-06-04 13:05:38 +02:00
Do note that if you install this repository via Ansible Galaxy, you will have to replace the role variable in the sample playbooks from `ansible-role-nginx` to `nginxinc.nginx`.
2018-01-10 23:40:01 +01:00
Other NGINX Roles
-----------------
2020-08-20 12:54:09 +02:00
You can find an Ansible role to configure NGINX [here](https://github.com/nginxinc/ansible-role-nginx-config)
2020-08-19 18:39:17 +02:00
You can find an Ansible role to install and configure NGINX App Protect [here](https://github.com/nginxinc/ansible-role-nginx-app-protect)
You can find an Ansible collection of roles to install and configure NGINX Controller [here](https://github.com/nginxinc/ansible-collection-nginx_controller)
2020-08-19 18:39:17 +02:00
You can find an Ansible role to install NGINX Unit [here](https://github.com/nginxinc/ansible-role-nginx-unit)
2020-06-04 13:05:38 +02:00
2018-01-10 23:40:01 +01:00
License
-------
2020-09-09 16:10:42 +02:00
[Apache License, Version 2.0](https://github.com/nginxinc/ansible-role-nginx/blob/main/LICENSE)
2018-01-10 23:40:01 +01:00
Author Information
------------------
[Alessandro Fael Garcia](https://github.com/alessfg)
[Grzegorz Dzien](https://github.com/gdzien)
2018-01-10 23:40:01 +01:00
[Tom Gamull](https://github.com/magicalyak)
2020-08-19 18:39:17 +02:00
© [F5 Networks, Inc.](https://www.f5.com/) 2018 - 2020