Skip to content

Commit 6b85495

Browse files
authored
chore: Replace nginxinc GH org mentions with nginx (#544)
1 parent 2f21820 commit 6b85495

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ body:
1414
1515
**Note:** If you are seeking community support or have a question, please consider starting a new thread via [GitHub discussions][discussions] or the [NGINX Community forum][forum].
1616
17-
[issue search]: https://github.com/nginxinc/ansible-role-nginx-config/issues
18-
[discussions]: https://github.com/nginxinc/ansible-role-nginx-config/discussions
17+
[issue search]: https://github.com/nginx/ansible-role-nginx-config/issues
18+
[discussions]: https://github.com/nginx/ansible-role-nginx-config/discussions
1919
[forum]: https://community.nginx.org
2020
2121
- type: textarea

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ body:
1212
1313
**Note:** If you are seeking community support or have a question, please consider starting a new thread via [GitHub discussions][discussions] or the [NGINX Community forum][forum].
1414
15-
[issue search]: https://github.com/nginxinc/ansible-role-nginx-config/issues
16-
[discussions]: https://github.com/nginxinc/ansible-role-nginx-config/discussions
15+
[issue search]: https://github.com/nginx/ansible-role-nginx-config/issues
16+
[discussions]: https://github.com/nginx/ansible-role-nginx-config/discussions
1717
[forum]: https://community.nginx.org
1818
1919
- type: textarea

.github/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ template: |
127127
128128
## Resources
129129
130-
- Functional configuration examples (check `converge.yml` under each `molecule` scenario) -- [github.com/nginxinc/ansible-role-nginx-config/tree/$RESOLVED_VERSION/molecule](https://github.com/nginxinc/ansible-role-nginx-config/tree/$RESOLVED_VERSION/molecule).
130+
- Functional configuration examples (check `converge.yml` under each `molecule` scenario) -- [github.com/nginx/ansible-role-nginx-config/tree/$RESOLVED_VERSION/molecule](https://github.com/nginx/ansible-role-nginx-config/tree/$RESOLVED_VERSION/molecule).
131131
- Ansible Galaxy repository -- [galaxy.ansible.com/nginxinc/nginx_config](https://galaxy.ansible.com/nginxinc/nginx_config).
132132
- NGINX Ansible role & collection introductory blog -- [nginx.com/blog/announcing-nginx-core-collection-ansible](https://www.f5.com/blog/announcing-nginx-core-collection-ansible).
133133
- NGINX: Better with Ansible demo -- [github.com/alessfg/nginx-ansible-demo](https://github.com/alessfg/nginx-ansible-demo).

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ BREAKING CHANGES:
165165
proxy: {}
166166
```
167167

168-
- Check [`defaults/main/template.yml`](https://github.com/nginxinc/ansible-role-nginx-config/blob/main/defaults/main/template.yml) and [`molecule/default/converge.yml`](https://github.com/nginxinc/ansible-role-nginx-config/blob/main/molecule/default/converge.yml) for examples!
168+
- Check [`defaults/main/template.yml`](https://github.com/nginx/ansible-role-nginx-config/blob/main/defaults/main/template.yml) and [`molecule/default/converge.yml`](https://github.com/nginx/ansible-role-nginx-config/blob/main/molecule/default/converge.yml) for examples!
169169
- These changes follow in the footsteps of the `http` Jinja2 refactor introduced in the `0.4.0` release. If you want more information on how to port your `stream` configurations, the release notes/changelog for `0.4.0` are a good place to start.
170170
- Replace `conf_file_name` and `conf_file_location` with `deployment_location` inside `nginx_config_stream_template`.
171171
- Replace `html_file_name` and `html_file_location` with `deployment_location` inside `nginx_config_html_demo_template`.
@@ -184,7 +184,7 @@ BUG FIXES:
184184
- Fix a bug when using a single `custom_directives` entry and the http template.
185185
- Fix check mode issue when running with SELinux enabled. Role no longer reports a change in check mode when setting the host to permissive mode.
186186
- Fix typo in the REST API template.
187-
- Fix incorrect REST API and status log variable names in [`defaults/main/template.yml`](https://github.com/nginxinc/ansible-role-nginx-config/blob/main/defaults/main/template.yml).
187+
- Fix incorrect REST API and status log variable names in [`defaults/main/template.yml`](https://github.com/nginx/ansible-role-nginx-config/blob/main/defaults/main/template.yml).
188188
- Fix bugged conditional check in the `http/ssl.j2` Jinja2 template.
189189

190190
## 0.4.2 (October 28, 2021)
@@ -244,7 +244,7 @@ Template engine updates:
244244
proxy: {}
245245
```
246246

247-
- Check [`defaults/main/template.yml`](https://github.com/nginxinc/ansible-role-nginx-config/blob/main/defaults/main/template.yml) and [`molecule/default/converge.yml`](https://github.com/nginxinc/ansible-role-nginx-config/blob/main/molecule/default/converge.yml) for examples!
247+
- Check [`defaults/main/template.yml`](https://github.com/nginx/ansible-role-nginx-config/blob/main/defaults/main/template.yml) and [`molecule/default/converge.yml`](https://github.com/nginx/ansible-role-nginx-config/blob/main/molecule/default/converge.yml) for examples!
248248
- Refactor the base config templates to simplify the creation of templates as well as development and maintenance moving forward:
249249
- Modify `servers`, `servers.listen`, `server.locations`, `upstream` and `upstream.servers` from nested dictionaries in the `http` and `stream` configuration templates to lists.
250250
- Remove/merge the `web_server` and `reverse_proxy` nested dictionary keys from the HTTP templates. These often lead to confusing and unnecessary code duplication and hard to maintain code. To update your templates, remove both keys and adjust your spacing accordingly.
@@ -295,7 +295,7 @@ Template engine updates:
295295
- Refactor the `keyval` directives into its own template config that now includes all the `keyval` HTTP module directives:
296296
- Both `keyval` directives now live within the `keyval` dictionary.
297297
- The `keyval` dictionary now lives in the HTTP template config instead of the Main template config.
298-
- Refactor `server.health_check_plus` into its own dictionary that now includes all the `health_check` module directives (check [`defaults/main/template.yml`](https://github.com/nginxinc/ansible-role-nginx-config/blob/main/defaults/main/template.yml) for examples).
298+
- Refactor `server.health_check_plus` into its own dictionary that now includes all the `health_check` module directives (check [`defaults/main/template.yml`](https://github.com/nginx/ansible-role-nginx-config/blob/main/defaults/main/template.yml) for examples).
299299
- Refactor the `limit_req` directive into its own dictionary:
300300
- The `limit_req` directives now live within the `limit_req` dictionary.
301301
- The `limit_req` dictionary now lives in the HTTP template config instead of the Main template config.
@@ -533,4 +533,4 @@ An empty `nginx_config_cleanup_files` will no longer cause `nginx_config_cleanup
533533

534534
## 0.1.0 (August 19, 2020)
535535

536-
Initial release of the NGINX Config role. Contains all NGINX Config related features previously available on the [NGINX Ansible role](https://github.com/nginxinc/ansible-role-nginx).
536+
Initial release of the NGINX Config role. Contains all NGINX Config related features previously available on the [NGINX Ansible role](https://github.com/nginx/ansible-role-nginx).

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Ansible Galaxy](https://img.shields.io/badge/galaxy-nginxinc.nginx__config-5bbdbf.svg)](https://galaxy.ansible.com/nginxinc/nginx_config)
2-
[![Molecule CI/CD](https://github.com/nginxinc/ansible-role-nginx-config/actions/workflows/molecule.yml/badge.svg)](https://github.com/nginxinc/ansible-role-nginx-config/actions/workflows/molecule.yml)
3-
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/nginxinc/ansible-role-nginx-config/badge)](https://securityscorecards.dev/viewer/?uri=github.com/nginxinc/ansible-role-nginx-config)
2+
[![Molecule CI/CD](https://github.com/nginx/ansible-role-nginx-config/actions/workflows/molecule.yml/badge.svg)](https://github.com/nginx/ansible-role-nginx-config/actions/workflows/molecule.yml)
3+
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/nginx/ansible-role-nginx-config/badge)](https://securityscorecards.dev/viewer/?uri=github.com/nginx/ansible-role-nginx-config)
44
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
55
[![Community Support](https://badgen.net/badge/support/community/cyan?icon=awesome)](/SUPPORT.md)
66
[![Community Forum](https://img.shields.io/badge/community-forum-009639?logo=discourse&link=https%3A%2F%2Fcommunity.nginx.org)](https://community.nginx.org)
@@ -25,8 +25,8 @@ If you want to use this role, you will need to use a supported version of Ansibl
2525
For ease of use, you can install and/or upgrade Ansible core, Jinja2, and the aforementioned Ansible collections by running the following four commands on your Ansible host:
2626

2727
```bash
28-
pip install --upgrade -r https://raw.githubusercontent.com/nginxinc/ansible-role-nginx-config/main/.github/workflows/requirements/requirements_ansible.txt
29-
curl -O https://raw.githubusercontent.com/nginxinc/ansible-role-nginx-config/main/.github/workflows/requirements/requirements_collections.yml
28+
pip install --upgrade -r https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/main/.github/workflows/requirements/requirements_ansible.txt
29+
curl -O https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/main/.github/workflows/requirements/requirements_collections.yml
3030
ansible-galaxy install --force -r requirements_collections.yml
3131
rm -f requirements_collections.yml
3232
```
@@ -79,7 +79,7 @@ If you want to contribute to this role, you will also need to install Ansible Li
7979
- For ease of use, you can install and/or upgrade Ansible Lint by running the following command on your Ansible host:
8080

8181
```bash
82-
pip install -r https://raw.githubusercontent.com/nginxinc/ansible-role-nginx-config/main/.github/workflows/requirements/requirements_ansible_lint.txt
82+
pip install -r https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/main/.github/workflows/requirements/requirements_ansible_lint.txt
8383
```
8484

8585
#### Molecule (Optional)
@@ -99,7 +99,7 @@ If you want to contribute to this role, you will also need to install Ansible Li
9999
- For ease of use, you can install and/or upgrade Molecule, the Molecule plugins package, and the Docker Python SDK by running the following command on your Ansible host:
100100

101101
```bash
102-
pip install --upgrade -r https://raw.githubusercontent.com/nginxinc/ansible-role-nginx-config/main/.github/workflows/requirements/requirements_molecule.txt
102+
pip install --upgrade -r https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/main/.github/workflows/requirements/requirements_molecule.txt
103103
```
104104

105105
## Role Installation
@@ -133,7 +133,7 @@ To use the role, include the following task in your playbook:
133133
To pull the latest edge commit of the role from GitHub, use:
134134

135135
```bash
136-
git clone https://github.com/nginxinc/ansible-role-nginx-config.git
136+
git clone https://github.com/nginx/ansible-role-nginx-config.git
137137
```
138138

139139
To use the role, include the following task in your playbook:
@@ -185,7 +185,7 @@ Working functional playbook examples can be found in the **[`molecule/`](/molecu
185185

186186
You can find the Ansible NGINX Core collection of roles to install and configure NGINX Open Source, NGINX Plus, and NGINX App Protect [here](https://github.com/nginxinc/ansible-collection-nginx).
187187

188-
You can find the Ansible NGINX role to install NGINX OSS and NGINX Plus [here](https://github.com/nginxinc/ansible-role-nginx).
188+
You can find the Ansible NGINX role to install NGINX OSS and NGINX Plus [here](https://github.com/nginx/ansible-role-nginx).
189189

190190
You can find the Ansible NGINX App Protect role to install and configure NGINX App Protect WAF and NGINX App Protect DoS [here](https://github.com/nginxinc/ansible-role-nginx-app-protect).
191191

0 commit comments

Comments
 (0)