├── .ansible-lint ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.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_lint.txt │ ├── requirements_collections.yml │ ├── requirements_galaxy.txt │ └── requirements_molecule.txt ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── defaults └── main │ ├── main.yml │ ├── selinux.yml │ ├── template.yml │ └── upload.yml ├── files ├── config │ ├── http │ │ └── .gitkeep │ ├── snippets │ │ └── .gitkeep │ └── stream │ │ └── .gitkeep ├── ssl │ └── .gitkeep └── www │ └── .gitkeep ├── handlers └── main.yml ├── meta └── main.yml ├── molecule ├── api_plus │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── cleanup_config │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── common │ ├── Dockerfile.j2 │ ├── files │ │ ├── http │ │ │ ├── server_one.conf │ │ │ └── server_two.conf │ │ ├── license │ │ │ └── .gitkeep │ │ ├── nginx.conf │ │ ├── snippets │ │ │ ├── location_snippet.conf │ │ │ └── modules.conf │ │ ├── ssl │ │ │ ├── molecule.crt │ │ │ ├── molecule.key │ │ │ └── rand.key │ │ └── www │ │ │ └── index.html │ └── requirements │ │ ├── oss_requirements.yml │ │ └── plus_requirements.yml ├── complete │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── complete_plus │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── default │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── entitlement_plus │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── push_config │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── reverse_proxy │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── stub_status │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml └── web_server │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── tasks ├── config │ ├── cleanup-config.yml │ ├── debug-output.yml │ ├── template-config.yml │ └── upload-config.yml ├── main.yml ├── prerequisites │ └── setup-selinux.yml └── validate │ └── validate.yml ├── templates ├── core.j2 ├── http │ ├── api.conf.j2 │ ├── app_protect.j2 │ ├── auth.j2 │ ├── core.j2 │ ├── default.conf.j2 │ ├── grpc.j2 │ ├── modules.j2 │ ├── proxy.j2 │ ├── ssl.j2 │ ├── status.conf.j2 │ └── upstream.j2 ├── nginx.conf.j2 ├── stream │ ├── core.j2 │ ├── default.conf.j2 │ ├── modules.j2 │ ├── proxy.j2 │ ├── ssl.j2 │ └── upstream.j2 └── www │ └── index.html.j2 └── vars └── main.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/f5_cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/workflows/f5_cla.yml -------------------------------------------------------------------------------- /.github/workflows/galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/workflows/galaxy.yml -------------------------------------------------------------------------------- /.github/workflows/milestone-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/workflows/milestone-pr.yml -------------------------------------------------------------------------------- /.github/workflows/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/workflows/molecule.yml -------------------------------------------------------------------------------- /.github/workflows/ossf_scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/workflows/ossf_scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/requirements/requirements_ansible_lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/workflows/requirements/requirements_ansible_lint.txt -------------------------------------------------------------------------------- /.github/workflows/requirements/requirements_collections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/workflows/requirements/requirements_collections.yml -------------------------------------------------------------------------------- /.github/workflows/requirements/requirements_galaxy.txt: -------------------------------------------------------------------------------- 1 | ansible-core==2.16.14 2 | jinja2==3.1.6 3 | -------------------------------------------------------------------------------- /.github/workflows/requirements/requirements_molecule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.github/workflows/requirements/requirements_molecule.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /defaults/main/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/defaults/main/main.yml -------------------------------------------------------------------------------- /defaults/main/selinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/defaults/main/selinux.yml -------------------------------------------------------------------------------- /defaults/main/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/defaults/main/template.yml -------------------------------------------------------------------------------- /defaults/main/upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/defaults/main/upload.yml -------------------------------------------------------------------------------- /files/config/http/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/config/snippets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/config/stream/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/ssl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/www/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/api_plus/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/api_plus/converge.yml -------------------------------------------------------------------------------- /molecule/api_plus/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/api_plus/molecule.yml -------------------------------------------------------------------------------- /molecule/api_plus/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/api_plus/prepare.yml -------------------------------------------------------------------------------- /molecule/api_plus/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/api_plus/verify.yml -------------------------------------------------------------------------------- /molecule/cleanup_config/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/cleanup_config/converge.yml -------------------------------------------------------------------------------- /molecule/cleanup_config/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/cleanup_config/molecule.yml -------------------------------------------------------------------------------- /molecule/cleanup_config/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/cleanup_config/prepare.yml -------------------------------------------------------------------------------- /molecule/cleanup_config/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/cleanup_config/verify.yml -------------------------------------------------------------------------------- /molecule/common/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/common/Dockerfile.j2 -------------------------------------------------------------------------------- /molecule/common/files/http/server_one.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/common/files/http/server_one.conf -------------------------------------------------------------------------------- /molecule/common/files/http/server_two.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/common/files/http/server_two.conf -------------------------------------------------------------------------------- /molecule/common/files/license/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /molecule/common/files/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/common/files/nginx.conf -------------------------------------------------------------------------------- /molecule/common/files/snippets/location_snippet.conf: -------------------------------------------------------------------------------- 1 | location /snippet { 2 | } 3 | -------------------------------------------------------------------------------- /molecule/common/files/snippets/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/common/files/snippets/modules.conf -------------------------------------------------------------------------------- /molecule/common/files/ssl/molecule.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/common/files/ssl/molecule.crt -------------------------------------------------------------------------------- /molecule/common/files/ssl/molecule.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/common/files/ssl/molecule.key -------------------------------------------------------------------------------- /molecule/common/files/ssl/rand.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/common/files/ssl/rand.key -------------------------------------------------------------------------------- /molecule/common/files/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/common/files/www/index.html -------------------------------------------------------------------------------- /molecule/common/requirements/oss_requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/common/requirements/oss_requirements.yml -------------------------------------------------------------------------------- /molecule/common/requirements/plus_requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/common/requirements/plus_requirements.yml -------------------------------------------------------------------------------- /molecule/complete/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/complete/converge.yml -------------------------------------------------------------------------------- /molecule/complete/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/complete/molecule.yml -------------------------------------------------------------------------------- /molecule/complete/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/complete/prepare.yml -------------------------------------------------------------------------------- /molecule/complete/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/complete/verify.yml -------------------------------------------------------------------------------- /molecule/complete_plus/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/complete_plus/converge.yml -------------------------------------------------------------------------------- /molecule/complete_plus/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/complete_plus/molecule.yml -------------------------------------------------------------------------------- /molecule/complete_plus/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/complete_plus/prepare.yml -------------------------------------------------------------------------------- /molecule/complete_plus/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/complete_plus/verify.yml -------------------------------------------------------------------------------- /molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/default/converge.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/default/prepare.yml -------------------------------------------------------------------------------- /molecule/default/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/default/verify.yml -------------------------------------------------------------------------------- /molecule/entitlement_plus/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/entitlement_plus/converge.yml -------------------------------------------------------------------------------- /molecule/entitlement_plus/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/entitlement_plus/molecule.yml -------------------------------------------------------------------------------- /molecule/entitlement_plus/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/entitlement_plus/prepare.yml -------------------------------------------------------------------------------- /molecule/entitlement_plus/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/entitlement_plus/verify.yml -------------------------------------------------------------------------------- /molecule/push_config/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/push_config/converge.yml -------------------------------------------------------------------------------- /molecule/push_config/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/push_config/molecule.yml -------------------------------------------------------------------------------- /molecule/push_config/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/push_config/prepare.yml -------------------------------------------------------------------------------- /molecule/push_config/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/push_config/verify.yml -------------------------------------------------------------------------------- /molecule/reverse_proxy/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/reverse_proxy/converge.yml -------------------------------------------------------------------------------- /molecule/reverse_proxy/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/reverse_proxy/molecule.yml -------------------------------------------------------------------------------- /molecule/reverse_proxy/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/reverse_proxy/prepare.yml -------------------------------------------------------------------------------- /molecule/reverse_proxy/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/reverse_proxy/verify.yml -------------------------------------------------------------------------------- /molecule/stub_status/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/stub_status/converge.yml -------------------------------------------------------------------------------- /molecule/stub_status/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/stub_status/molecule.yml -------------------------------------------------------------------------------- /molecule/stub_status/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/stub_status/prepare.yml -------------------------------------------------------------------------------- /molecule/stub_status/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/stub_status/verify.yml -------------------------------------------------------------------------------- /molecule/web_server/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/web_server/converge.yml -------------------------------------------------------------------------------- /molecule/web_server/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/web_server/molecule.yml -------------------------------------------------------------------------------- /molecule/web_server/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/web_server/prepare.yml -------------------------------------------------------------------------------- /molecule/web_server/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/molecule/web_server/verify.yml -------------------------------------------------------------------------------- /tasks/config/cleanup-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/tasks/config/cleanup-config.yml -------------------------------------------------------------------------------- /tasks/config/debug-output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/tasks/config/debug-output.yml -------------------------------------------------------------------------------- /tasks/config/template-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/tasks/config/template-config.yml -------------------------------------------------------------------------------- /tasks/config/upload-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/tasks/config/upload-config.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/prerequisites/setup-selinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/tasks/prerequisites/setup-selinux.yml -------------------------------------------------------------------------------- /tasks/validate/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/tasks/validate/validate.yml -------------------------------------------------------------------------------- /templates/core.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/core.j2 -------------------------------------------------------------------------------- /templates/http/api.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/http/api.conf.j2 -------------------------------------------------------------------------------- /templates/http/app_protect.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/http/app_protect.j2 -------------------------------------------------------------------------------- /templates/http/auth.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/http/auth.j2 -------------------------------------------------------------------------------- /templates/http/core.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/http/core.j2 -------------------------------------------------------------------------------- /templates/http/default.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/http/default.conf.j2 -------------------------------------------------------------------------------- /templates/http/grpc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/http/grpc.j2 -------------------------------------------------------------------------------- /templates/http/modules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/http/modules.j2 -------------------------------------------------------------------------------- /templates/http/proxy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/http/proxy.j2 -------------------------------------------------------------------------------- /templates/http/ssl.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/http/ssl.j2 -------------------------------------------------------------------------------- /templates/http/status.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/http/status.conf.j2 -------------------------------------------------------------------------------- /templates/http/upstream.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/http/upstream.j2 -------------------------------------------------------------------------------- /templates/nginx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/nginx.conf.j2 -------------------------------------------------------------------------------- /templates/stream/core.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/stream/core.j2 -------------------------------------------------------------------------------- /templates/stream/default.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/stream/default.conf.j2 -------------------------------------------------------------------------------- /templates/stream/modules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/stream/modules.j2 -------------------------------------------------------------------------------- /templates/stream/proxy.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/stream/proxy.j2 -------------------------------------------------------------------------------- /templates/stream/ssl.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/stream/ssl.j2 -------------------------------------------------------------------------------- /templates/stream/upstream.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/stream/upstream.j2 -------------------------------------------------------------------------------- /templates/www/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/templates/www/index.html.j2 -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/ansible-role-nginx-config/HEAD/vars/main.yml --------------------------------------------------------------------------------