├── .ansible-lint ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── ansible-code-bot.yml ├── pull_request_template.md ├── release-drafter.yml ├── renovate.json ├── scorecard.yml └── workflows │ ├── f5_cla.yml │ ├── galaxy.yml │ ├── milestone_pr.yml │ ├── molecule.yml │ ├── ossf_scorecard.yml │ ├── release.yml │ └── requirements │ ├── requirements_ansible.txt │ ├── requirements_ansible_lint.txt │ ├── requirements_collections.yml │ └── requirements_molecule.txt ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── defaults └── main │ ├── agent.yml │ ├── amplify.yml │ ├── bsd.yml │ ├── keepalived.yml │ ├── logrotate.yml │ ├── main.yml │ ├── selinux.yml │ └── systemd.yml ├── files ├── license │ └── .gitkeep └── services │ ├── nginx.conf.upstart │ ├── nginx.openrc │ ├── nginx.override.conf │ ├── nginx.systemd │ ├── nginx.sysvinit │ └── nginx.upstart ├── handlers └── main.yml ├── meta └── main.yml ├── molecule ├── agent │ ├── cleanup.yml │ ├── converge.yml │ ├── molecule.yml │ └── verify.yml ├── amplify │ ├── cleanup.yml │ ├── converge.yml │ ├── molecule.yml │ └── verify.yml ├── common │ └── Dockerfile.j2 ├── default │ ├── converge.yml │ ├── molecule.yml │ └── verify.yml ├── distribution │ ├── converge.yml │ ├── molecule.yml │ └── verify.yml ├── downgrade-plus │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── downgrade │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── plus │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── source-version │ ├── converge.yml │ ├── molecule.yml │ └── verify.yml ├── source │ ├── converge.yml │ ├── molecule.yml │ └── verify.yml ├── stable │ ├── converge.yml │ ├── molecule.yml │ └── verify.yml ├── uninstall-plus │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── uninstall │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── upgrade-plus │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── upgrade │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml └── version │ ├── converge.yml │ ├── molecule.yml │ └── verify.yml ├── tasks ├── agent │ ├── install-agent.yml │ ├── setup-alpine.yml │ ├── setup-debian.yml │ ├── setup-redhat.yml │ └── setup-suse.yml ├── amplify │ ├── install-amplify.yml │ ├── setup-debian.yml │ └── setup-redhat.yml ├── config │ ├── debug-output.yml │ ├── modify-systemd.yml │ └── setup-logrotate.yml ├── keys │ └── setup-keys.yml ├── main.yml ├── modules │ ├── install-modules.yml │ └── install-packages.yml ├── opensource │ ├── install-alpine.yml │ ├── install-bsd.yml │ ├── install-debian.yml │ ├── install-distribution.yml │ ├── install-oss.yml │ ├── install-redhat.yml │ ├── install-source.yml │ └── install-suse.yml ├── plus │ ├── install-alpine.yml │ ├── install-debian.yml │ ├── install-freebsd.yml │ ├── install-redhat.yml │ ├── install-suse.yml │ ├── remove-license.yml │ └── setup-license.yml ├── prerequisites │ ├── install-dependencies.yml │ ├── prerequisites.yml │ └── setup-selinux.yml └── validate │ └── validate.yml ├── templates ├── keepalived │ └── keepalived.conf.tmpl.j2 ├── logrotate │ └── nginx.j2 ├── nginx-agent │ ├── agent-dynamic.conf.j2 │ └── nginx-agent.conf.j2 ├── selinux │ └── nginx-plus-module.te.j2 └── services │ └── nginx.service.override.conf.j2 └── vars └── main.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ansible-code-bot.yml: -------------------------------------------------------------------------------- 1 | --- 2 | schedule: 3 | interval: weekly 4 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/f5_cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/workflows/f5_cla.yml -------------------------------------------------------------------------------- /.github/workflows/galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/workflows/galaxy.yml -------------------------------------------------------------------------------- /.github/workflows/milestone_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/workflows/milestone_pr.yml -------------------------------------------------------------------------------- /.github/workflows/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/workflows/molecule.yml -------------------------------------------------------------------------------- /.github/workflows/ossf_scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/workflows/ossf_scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/requirements/requirements_ansible.txt: -------------------------------------------------------------------------------- 1 | ansible-core==2.16.14 2 | jinja2==3.1.6 3 | -------------------------------------------------------------------------------- /.github/workflows/requirements/requirements_ansible_lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/workflows/requirements/requirements_ansible_lint.txt -------------------------------------------------------------------------------- /.github/workflows/requirements/requirements_collections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/workflows/requirements/requirements_collections.yml -------------------------------------------------------------------------------- /.github/workflows/requirements/requirements_molecule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.github/workflows/requirements/requirements_molecule.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /defaults/main/agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/defaults/main/agent.yml -------------------------------------------------------------------------------- /defaults/main/amplify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/defaults/main/amplify.yml -------------------------------------------------------------------------------- /defaults/main/bsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/defaults/main/bsd.yml -------------------------------------------------------------------------------- /defaults/main/keepalived.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/defaults/main/keepalived.yml -------------------------------------------------------------------------------- /defaults/main/logrotate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/defaults/main/logrotate.yml -------------------------------------------------------------------------------- /defaults/main/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/defaults/main/main.yml -------------------------------------------------------------------------------- /defaults/main/selinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/defaults/main/selinux.yml -------------------------------------------------------------------------------- /defaults/main/systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/defaults/main/systemd.yml -------------------------------------------------------------------------------- /files/license/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/services/nginx.conf.upstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/files/services/nginx.conf.upstart -------------------------------------------------------------------------------- /files/services/nginx.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/files/services/nginx.openrc -------------------------------------------------------------------------------- /files/services/nginx.override.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | TimeoutStopSec=90 3 | -------------------------------------------------------------------------------- /files/services/nginx.systemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/files/services/nginx.systemd -------------------------------------------------------------------------------- /files/services/nginx.sysvinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/files/services/nginx.sysvinit -------------------------------------------------------------------------------- /files/services/nginx.upstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/files/services/nginx.upstart -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/agent/cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/agent/cleanup.yml -------------------------------------------------------------------------------- /molecule/agent/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/agent/converge.yml -------------------------------------------------------------------------------- /molecule/agent/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/agent/molecule.yml -------------------------------------------------------------------------------- /molecule/agent/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/agent/verify.yml -------------------------------------------------------------------------------- /molecule/amplify/cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/amplify/cleanup.yml -------------------------------------------------------------------------------- /molecule/amplify/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/amplify/converge.yml -------------------------------------------------------------------------------- /molecule/amplify/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/amplify/molecule.yml -------------------------------------------------------------------------------- /molecule/amplify/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/amplify/verify.yml -------------------------------------------------------------------------------- /molecule/common/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/common/Dockerfile.j2 -------------------------------------------------------------------------------- /molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/default/converge.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/default/verify.yml -------------------------------------------------------------------------------- /molecule/distribution/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/distribution/converge.yml -------------------------------------------------------------------------------- /molecule/distribution/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/distribution/molecule.yml -------------------------------------------------------------------------------- /molecule/distribution/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/distribution/verify.yml -------------------------------------------------------------------------------- /molecule/downgrade-plus/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/downgrade-plus/converge.yml -------------------------------------------------------------------------------- /molecule/downgrade-plus/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/downgrade-plus/molecule.yml -------------------------------------------------------------------------------- /molecule/downgrade-plus/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/downgrade-plus/prepare.yml -------------------------------------------------------------------------------- /molecule/downgrade-plus/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/downgrade-plus/verify.yml -------------------------------------------------------------------------------- /molecule/downgrade/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/downgrade/converge.yml -------------------------------------------------------------------------------- /molecule/downgrade/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/downgrade/molecule.yml -------------------------------------------------------------------------------- /molecule/downgrade/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/downgrade/prepare.yml -------------------------------------------------------------------------------- /molecule/downgrade/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/downgrade/verify.yml -------------------------------------------------------------------------------- /molecule/plus/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/plus/converge.yml -------------------------------------------------------------------------------- /molecule/plus/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/plus/molecule.yml -------------------------------------------------------------------------------- /molecule/plus/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/plus/prepare.yml -------------------------------------------------------------------------------- /molecule/plus/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/plus/verify.yml -------------------------------------------------------------------------------- /molecule/source-version/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/source-version/converge.yml -------------------------------------------------------------------------------- /molecule/source-version/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/source-version/molecule.yml -------------------------------------------------------------------------------- /molecule/source-version/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/source-version/verify.yml -------------------------------------------------------------------------------- /molecule/source/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/source/converge.yml -------------------------------------------------------------------------------- /molecule/source/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/source/molecule.yml -------------------------------------------------------------------------------- /molecule/source/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/source/verify.yml -------------------------------------------------------------------------------- /molecule/stable/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/stable/converge.yml -------------------------------------------------------------------------------- /molecule/stable/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/stable/molecule.yml -------------------------------------------------------------------------------- /molecule/stable/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/stable/verify.yml -------------------------------------------------------------------------------- /molecule/uninstall-plus/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/uninstall-plus/converge.yml -------------------------------------------------------------------------------- /molecule/uninstall-plus/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/uninstall-plus/molecule.yml -------------------------------------------------------------------------------- /molecule/uninstall-plus/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/uninstall-plus/prepare.yml -------------------------------------------------------------------------------- /molecule/uninstall-plus/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/uninstall-plus/verify.yml -------------------------------------------------------------------------------- /molecule/uninstall/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/uninstall/converge.yml -------------------------------------------------------------------------------- /molecule/uninstall/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/uninstall/molecule.yml -------------------------------------------------------------------------------- /molecule/uninstall/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/uninstall/prepare.yml -------------------------------------------------------------------------------- /molecule/uninstall/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/uninstall/verify.yml -------------------------------------------------------------------------------- /molecule/upgrade-plus/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/upgrade-plus/converge.yml -------------------------------------------------------------------------------- /molecule/upgrade-plus/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/upgrade-plus/molecule.yml -------------------------------------------------------------------------------- /molecule/upgrade-plus/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/upgrade-plus/prepare.yml -------------------------------------------------------------------------------- /molecule/upgrade-plus/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/upgrade-plus/verify.yml -------------------------------------------------------------------------------- /molecule/upgrade/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/upgrade/converge.yml -------------------------------------------------------------------------------- /molecule/upgrade/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/upgrade/molecule.yml -------------------------------------------------------------------------------- /molecule/upgrade/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/upgrade/prepare.yml -------------------------------------------------------------------------------- /molecule/upgrade/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/upgrade/verify.yml -------------------------------------------------------------------------------- /molecule/version/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/version/converge.yml -------------------------------------------------------------------------------- /molecule/version/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/version/molecule.yml -------------------------------------------------------------------------------- /molecule/version/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/molecule/version/verify.yml -------------------------------------------------------------------------------- /tasks/agent/install-agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/agent/install-agent.yml -------------------------------------------------------------------------------- /tasks/agent/setup-alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/agent/setup-alpine.yml -------------------------------------------------------------------------------- /tasks/agent/setup-debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/agent/setup-debian.yml -------------------------------------------------------------------------------- /tasks/agent/setup-redhat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/agent/setup-redhat.yml -------------------------------------------------------------------------------- /tasks/agent/setup-suse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/agent/setup-suse.yml -------------------------------------------------------------------------------- /tasks/amplify/install-amplify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/amplify/install-amplify.yml -------------------------------------------------------------------------------- /tasks/amplify/setup-debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/amplify/setup-debian.yml -------------------------------------------------------------------------------- /tasks/amplify/setup-redhat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/amplify/setup-redhat.yml -------------------------------------------------------------------------------- /tasks/config/debug-output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/config/debug-output.yml -------------------------------------------------------------------------------- /tasks/config/modify-systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/config/modify-systemd.yml -------------------------------------------------------------------------------- /tasks/config/setup-logrotate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/config/setup-logrotate.yml -------------------------------------------------------------------------------- /tasks/keys/setup-keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/keys/setup-keys.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/modules/install-modules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/modules/install-modules.yml -------------------------------------------------------------------------------- /tasks/modules/install-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/modules/install-packages.yml -------------------------------------------------------------------------------- /tasks/opensource/install-alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/opensource/install-alpine.yml -------------------------------------------------------------------------------- /tasks/opensource/install-bsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/opensource/install-bsd.yml -------------------------------------------------------------------------------- /tasks/opensource/install-debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/opensource/install-debian.yml -------------------------------------------------------------------------------- /tasks/opensource/install-distribution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/opensource/install-distribution.yml -------------------------------------------------------------------------------- /tasks/opensource/install-oss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/opensource/install-oss.yml -------------------------------------------------------------------------------- /tasks/opensource/install-redhat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/opensource/install-redhat.yml -------------------------------------------------------------------------------- /tasks/opensource/install-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/opensource/install-source.yml -------------------------------------------------------------------------------- /tasks/opensource/install-suse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/opensource/install-suse.yml -------------------------------------------------------------------------------- /tasks/plus/install-alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/plus/install-alpine.yml -------------------------------------------------------------------------------- /tasks/plus/install-debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/plus/install-debian.yml -------------------------------------------------------------------------------- /tasks/plus/install-freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/plus/install-freebsd.yml -------------------------------------------------------------------------------- /tasks/plus/install-redhat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/plus/install-redhat.yml -------------------------------------------------------------------------------- /tasks/plus/install-suse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/plus/install-suse.yml -------------------------------------------------------------------------------- /tasks/plus/remove-license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/plus/remove-license.yml -------------------------------------------------------------------------------- /tasks/plus/setup-license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/plus/setup-license.yml -------------------------------------------------------------------------------- /tasks/prerequisites/install-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/prerequisites/install-dependencies.yml -------------------------------------------------------------------------------- /tasks/prerequisites/prerequisites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/prerequisites/prerequisites.yml -------------------------------------------------------------------------------- /tasks/prerequisites/setup-selinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/prerequisites/setup-selinux.yml -------------------------------------------------------------------------------- /tasks/validate/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/tasks/validate/validate.yml -------------------------------------------------------------------------------- /templates/keepalived/keepalived.conf.tmpl.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/templates/keepalived/keepalived.conf.tmpl.j2 -------------------------------------------------------------------------------- /templates/logrotate/nginx.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/templates/logrotate/nginx.j2 -------------------------------------------------------------------------------- /templates/nginx-agent/agent-dynamic.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/templates/nginx-agent/agent-dynamic.conf.j2 -------------------------------------------------------------------------------- /templates/nginx-agent/nginx-agent.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/templates/nginx-agent/nginx-agent.conf.j2 -------------------------------------------------------------------------------- /templates/selinux/nginx-plus-module.te.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/templates/selinux/nginx-plus-module.te.j2 -------------------------------------------------------------------------------- /templates/services/nginx.service.override.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/templates/services/nginx.service.override.conf.j2 -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx/HEAD/vars/main.yml --------------------------------------------------------------------------------