This commit is contained in:
2023-03-09 18:02:25 +03:00
commit a81f423baa
93 changed files with 2357 additions and 0 deletions

View File

@ -0,0 +1,10 @@
---
# Choose to install BSD packages or ports.
# Options are true for packages or False for ports.
# Default is true.
nginx_unit_bsd_install_packages: true
# Choose to install packages built from BSD ports collection if available.
# Options are true for use packages or false for do not use packages.
# Default is true.
nginx_unit_bsd_portinstall_use_packages: true

View File

@ -0,0 +1,10 @@
---
# Install NGINX Unit and NGINX Unit modules.
# Use a list of supported NGINX Unit modules.
# Default is false.
nginx_unit_enable: false
nginx_unit_modules: []
# Choose where to fetch the NGINX signing key from.
# Default is the official NGINX signing key host.
# nginx_unit_signing_key: http://nginx.org/keys/nginx_signing.key

View File

@ -0,0 +1,13 @@
---
# Set SELinux enforcing for NGINX Unit (Centos/Redhat only) - you may need to open ports on your own
nginx_unit_selinux: false
# Enable enforcing mode if true. Permissive if false (audit only, no enforcing) globally (only works with nginx_unit_selinux: true)
nginx_unit_selinux_enforcing: true
# List of TCP ports to add to http_port_t type (80 and 443 have this type already)
# nginx_unit_selinux_tcp_ports:
# - 80
# - 443
# List of UDP ports to add to http_port_t type
# nginx_unit_selinux_udp_ports:
# - 80
# - 443