Skip to content

Commit 27afd96

Browse files
committed
adding back nginx plus signing key
1 parent dc09e87 commit 27afd96

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ nginx_app_protect_use_rhel_subscription_repos: false
107107
# OPTIONAL: Choose where to fetch the NGINX App Protect and Security Updates signing keys from.
108108
# Default settings are the official NGINX signing key hosts.
109109
nginx_app_protect_signing_keys:
110-
# nginx: https://cs.nginx.com/static/keys/nginx_signing.key
110+
nginx_plus: https://cs.nginx.com/static/keys/nginx_signing.key
111111
app_protect: https://cs.nginx.com/static/keys/app-protect.key
112112
security_updates: https://cs.nginx.com/static/keys/app-protect-security-updates.key
113113

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ nginx_app_protect_use_rhel_subscription_repos: false
3131
# Choose where to fetch the NGINX App Protect and Security Updates signing keys from.
3232
# Default settings are the official NGINX signing key hosts.
3333
nginx_app_protect_signing_keys:
34-
# nginx: https://cs.nginx.com/static/keys/nginx_signing.key
34+
nginx_plus: https://cs.nginx.com/static/keys/nginx_signing.key
3535
app_protect: https://cs.nginx.com/static/keys/app-protect.key
3636
security_updates: https://cs.nginx.com/static/keys/app-protect-security-updates.key
3737

tasks/keys/apt-key.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
# - name: Add APT NGINX signing key
3-
# apt_key:
4-
# url: "{{ nginx_app_protect_signing_keys.nginx }}"
2+
- name: Add APT NGINX Plus signing key
3+
apt_key:
4+
url: "{{ nginx_app_protect_signing_keys.nginx_plus }}"
55

66
- name: Add APT NGINX App Protect signing key
77
apt_key:

tasks/keys/rpm-key.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
# - name: Add RPM NGINX signing key
3-
# rpm_key:
4-
# key: "{{ nginx_app_protect_signing_keys.nginx }}"
2+
- name: Add RPM NGINX Plus signing key
3+
rpm_key:
4+
key: "{{ nginx_app_protect_signing_keys.nginx_plus }}"
55

66
- name: Add RPM NGINX App Protect signing key
77
rpm_key:

0 commit comments

Comments
 (0)