Skip to content

Commit 9555ab9

Browse files
committed
Update branding
1 parent 9c80941 commit 9555ab9

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Ansible NGINX Role
44
[![Ansible Galaxy](https://img.shields.io/badge/galaxy-nginxinc.nginx-5bbdbf.svg)](https://galaxy.ansible.com/nginxinc/nginx)
55
[![Build Status](https://travis-ci.org/nginxinc/ansible-role-nginx.svg?branch=master)](https://travis-ci.org/nginxinc/ansible-role-nginx)
66

7-
This role installs open source NGINX or NGINX Plus on your target host.
7+
This role installs NGINX Open Source or NGINX Plus on your target host.
88

99
Requirements
1010
------------
@@ -13,9 +13,9 @@ This role was developed using Ansible 2.4.0.0. Backwards compatibility is not gu
1313

1414
Use `ansible-galaxy install nginxinc.nginx` to install the role on your system.
1515

16-
It supports all platforms supported by [open source NGINX](https://nginx.org/en/linux_packages.html#mainline) and [NGINX Plus](https://www.nginx.com/products/technical-specs/):
16+
It supports all platforms supported by [NGINX Open Source](https://nginx.org/en/linux_packages.html#mainline) and [NGINX Plus](https://www.nginx.com/products/technical-specs/):
1717

18-
**Open Source NGINX:**
18+
**NGINX Open Source:**
1919

2020
CentOS:
2121
versions:
@@ -84,7 +84,7 @@ This role has multiple variables. The defaults for all these variables are the f
8484
# Default is 'opensource'.
8585
type: opensource
8686

87-
# Specify which branch of Open Source NGINX you want to install.
87+
# Specify which branch of NGINX Open Source you want to install.
8888
# Options are 'mainline' or 'stable'.
8989
# Default is mainline.
9090
branch: mainline
@@ -107,7 +107,7 @@ This role has multiple variables. The defaults for all these variables are the f
107107
amplify_key: null
108108

109109
# Enable NGINX status data.
110-
# Will enable 'stub_status' in open source NGINX and 'status' in NGINX Plus.
110+
# Will enable 'stub_status' in NGINX Open Source and 'status' in NGINX Plus.
111111
# Default is false.
112112
status_enable: false
113113

defaults/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
# Default is 'opensource'.
55
type: opensource
66

7-
# Specify which branch of Open Source NGINX you want to install.
7+
# Specify which branch of NGINX Open Source you want to install.
88
# Options are 'mainline' or 'stable'.
99
# Default is mainline.
1010
branch: mainline
1111

12-
# Install nginscript, perl, waf (NGINX Plus only), geoip, image-filter, rtmp and/or xslt modules.
12+
# Install NGINX JavaScript, Perl, ModSecurity WAF (NGINX Plus only), GeoIP, Image-Filter, RTMP Media Streaming, and/or XSLT modules.
1313
# Default is false.
1414
modules:
1515
njs: false
@@ -27,7 +27,7 @@ amplify_enable: false
2727
amplify_key: null
2828

2929
# Enable NGINX status data.
30-
# Will enable 'stub_status' in open source NGINX and 'status' in NGINX Plus.
30+
# Will enable 'stub_status' in NGINX Open Source and 'status' in NGINX Plus.
3131
# Default is false.
3232
status_enable: false
3333

tasks/conf/setup-status.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: "(Setup: Open Source NGINX) Enable Open Source NGINX Status"
2+
- name: "(Setup: NGINX Open Source) Enable NGINX Open Source Status"
33
blockinfile:
44
path: "{{ (http_template_enable) | ternary('/etc/nginx/conf.d/http/stub_status.conf','/etc/nginx/conf.d/stub_status.conf') }}"
55
create: yes

tasks/modules/install-geoip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: "(Install: All OSs) Install Open Source NGINX GeoIP Module"
2+
- name: "(Install: All OSs) Install NGINX Open Source GeoIP Module"
33
package:
44
name: nginx-geoip-perl
55
state: present

tasks/modules/install-image-filter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: "(Install: All OSs) Install Open Source NGINX Image Filter Module"
2+
- name: "(Install: All OSs) Install NGINX Open Source Image Filter Module"
33
package:
44
name: nginx-module-image-filter
55
state: present

tasks/modules/install-njs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
2-
- name: "(Install: All OSs) Install Open Source NGINX NJS Module"
2+
- name: "(Install: All OSs) Install NGINX Open Source JavaScript Module"
33
package:
44
name: nginx-module-njs
55
state: present
66
when: type == "opensource"
77

8-
- name: "(Install: All OSs) Install NGINX Plus NJS Module"
8+
- name: "(Install: All OSs) Install NGINX Plus JavaScript Module"
99
package:
1010
name: nginx-plus-module-njs
1111
state: present
1212
when: type == "plus"
1313

14-
- name: "(Setup: All NGINX) Load NGINX NJS Module"
14+
- name: "(Setup: All NGINX) Load NGINX JavaScript Module"
1515
blockinfile:
1616
path: /etc/nginx/nginx.conf
1717
insertbefore: BOF

tasks/modules/install-perl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: "(Install: All OSs) Install Open Source NGINX Perl Module"
2+
- name: "(Install: All OSs) Install NGINX Open Source Perl Module"
33
package:
44
name: nginx-module-perl
55
state: present

tasks/modules/install-rtmp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: "(Install: All OSs) Install Open Source NGINX RTMP Module"
2+
- name: "(Install: All OSs) Install NGINX Open Source RTMP Module"
33
package:
44
name: nginx-module-rtmp
55
state: present

tasks/modules/install-xslt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: "(Install: All OSs) Install Open Source NGINX XSLT Module"
2+
- name: "(Install: All OSs) Install NGINX Open Source XSLT Module"
33
package:
44
name: nginx-module-xslt
55
state: present

0 commit comments

Comments
 (0)