Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Ansible Collection Hardening | 3,163 | a day ago | 33 | apache-2.0 | Jinja | |||||
This Ansible collection provides battle tested hardening for Linux, SSH, nginx, MySQL | ||||||||||
Ansible Role Nginx | 754 | 8 days ago | 3 | mit | Jinja | |||||
Ansible Role - Nginx | ||||||||||
Ansible Role Nginx | 649 | 2 months ago | 20 | Jinja | ||||||
Ansible role to install and manage nginx configuration | ||||||||||
Ansible Role Nginx | 542 | 9 days ago | 4 | apache-2.0 | Shell | |||||
Ansible role for installing NGINX | ||||||||||
Nginx Init Ubuntu | 520 | 6 years ago | 6 | Shell | ||||||
Tried and true Nginx init script - got enhancements? Send a pull! | ||||||||||
Memory Hole | 235 | 3 years ago | 5 | mit | Clojure | |||||
Memory Hole is a support issue organizer application | ||||||||||
Ansible Nginx Hardening | 179 | 2 years ago | Ruby | |||||||
This Ansible role provides secure nginx configurations. | ||||||||||
Ansible Role Ssl Certs | 124 | 3 years ago | 2 | bsd-2-clause | ||||||
Generate and/or deploy SSL certificate | ||||||||||
Urpm | 116 | 4 years ago | 2 | PHP | ||||||
urpm 是一套基于Laravel封装的后台用户管理权限系统,能够让开发者不用再关心权限问题,实现后台功能的快速开发。 | ||||||||||
Ansible Role Nginx Config | 109 | 8 days ago | 5 | apache-2.0 | Jinja | |||||
Ansible role for configuring NGINX |
This role installs NGINX Open Source, NGINX Plus, or the NGINX Amplify agent on your target host.
Note: This role is still in active development. There may be unidentified issues and the role variables may change as development continues.
If you wish to install NGINX Plus using this role, you will need to obtain an NGINX Plus license beforehand. You do not need to do anything beforehand if you want to install NGINX OSS.
This role is developed and tested with maintained versions of Ansible core (above 2.12
).
When using Ansible core, you will also need to install the following collections:
---
collections:
- name: ansible.posix
version: 1.4.0
- name: community.general
version: 6.2.0
- name: community.crypto # Only required if you plan to install NGINX Plus
version: 2.10.0
- name: community.docker # Only required if you plan to use Molecule (see below)
version: 3.4.0
Note: You can alternatively install the Ansible community distribution (what is known as the "old" Ansible) if you don't want to manage individual collections.
You will need to run this role as a root user using Ansible's become
parameter. Make sure you have set up the appropriate permissions on your target hosts.
Instructions on how to install Ansible can be found in the Ansible website.
3.1
.Molecule is used to test the various functionalities of the role. The recommended version of Molecule to test this role is 4.x
.
Instructions on how to install Molecule can be found in the Molecule website. You will also need to install the Molecule Docker driver.
To run the NGINX Plus Molecule tests, you must copy your NGINX Plus license to the role's files/license
folder.
You can alternatively add your NGINX Plus repository certificate and key to the local environment. Run the following commands to export these files as base64-encoded variables and execute the Molecule tests:
export NGINX_CRT=$( cat <path to your certificate file> | base64 )
export NGINX_KEY=$( cat <path to your key file> | base64 )
molecule test -s plus
To install the latest stable release of the role on your system, use:
ansible-galaxy install nginxinc.nginx
Alternatively, if you have already installed the role, update the role to the latest release:
ansible-galaxy install -f nginxinc.nginx
To pull the latest edge commit of the role from GitHub, use:
git clone https://github.com/nginxinc/ansible-role-nginx.git
The NGINX Ansible role supports all platforms supported by NGINX Open Source, NGINX Plus, and the NGINX Amplify agent:
AlmaLinux:
- 8
- 9
Alpine:
- 3.14
- 3.15
- 3.16
- 3.17
Amazon Linux:
- 2
CentOS:
- 7.4+
Debian:
- bullseye (11)
Oracle Linux:
- 7
- 8
- 9
Red Hat:
- 7.4+
- 8
- 9
Rocky Linux:
- 8
- 9
SUSE/SLES:
- 12
- 15
Ubuntu:
- bionic (18.04)
- focal (20.04)
- impish (21.10)
- jammy (22.04)
AlmaLinux:
- 8
- 9
Alpine:
- 3.13
- 3.14
- 3.15
- 3.16
- 3.17
Amazon Linux 2:
- any
CentOS:
- 7.4+
Debian:
- bullseye (11)
FreeBSD:
- 12.1+
- 13
Oracle Linux:
- 7.4+
Red Hat:
- 7.4+
- 8
- 9
Rocky Linux:
- 8
- 9
SUSE/SLES:
- 12
- 15
Ubuntu:
- bionic (18.04)
- focal (20.04)
- jammy (22.04)
Amazon Linux 2:
- any
Debian:
- buster (10)
- bullseye (11)
Red Hat:
- 8
Ubuntu:
- bionic
- focal
Note: You can also use this role to compile NGINX Open Source from source, install NGINX Open Source on compatible yet unsupported platforms, or install NGINX Open Source on BSD systems at your own risk.
This role has multiple variables. The descriptions and defaults for all these variables can be found in the defaults/main/
folder in the following files:
Name | Description |
---|---|
main.yml |
NGINX installation variables |
amplify.yml |
NGINX Amplify agent installation variables |
bsd.yml |
BSD installation variables |
logrotate.yml |
Logrotate configuration variables |
selinux.yml |
SELinux configuration variables |
systemd.yml |
Systemd configuration variables |
Similarly, descriptions and defaults for preset variables can be found in the vars/
folder in the following files:
Name | Description |
---|---|
main.yml |
List of supported NGINX platforms, modules, and Linux installation variables |
Working functional playbook examples can be found in the molecule/
folder in the following files:
Name | Description |
---|---|
default/converge.yml |
Install a specific version of NGINX, install various NGINX supported modules, tweak systemd and set up logrotate |
distribution/converge.yml |
Install NGINX from the distribution's package repository instead of NGINX's package repository |
downgrade/converge.yml |
Downgrade to a specific version of NGINX |
downgrade-plus/converge.yml |
Downgrade to a specific version of NGINX Plus |
plus/converge.yml |
Install NGINX Plus and various NGINX Plus supported modules |
source/converge.yml |
Install NGINX from source |
stable/converge.yml |
Install NGINX using the latest stable release |
uninstall/converge.yml |
Uninstall NGINX |
uninstall-plus/converge.yml |
Uninstall NGINX Plus |
upgrade/converge.yml |
Upgrade NGINX |
upgrade-plus/converge.yml |
Upgrade NGINX Plus |
version/converge.yml |
Install a specific version of NGINX and various NGINX modules |
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
.
You can find the Ansible NGINX Core collection of roles to install and configure NGINX Open Source, NGINX Plus, and NGINX App Protect here.
You can find the Ansible NGINX configuration role to configure NGINX here.
You can find the Ansible NGINX App Protect role to install and configure NGINX App Protect WAF and NGINX App Protect DoS here.
You can find the Ansible NGINX Unit role to install NGINX Unit here.
© F5, Inc. 2018 - 2023