ansible-nginx/defaults/main.yml

146 lines
2.9 KiB
YAML
Raw Permalink Normal View History

2015-07-15 17:14:39 +07:00
---
2015-07-15 20:18:51 +07:00
2016-03-07 18:08:34 +07:00
# Debian
2015-07-15 20:18:51 +07:00
nginx_apt_package: nginx-full
nginx_backports: false
2016-03-07 18:08:34 +07:00
# FreeBSD
nginx_pkgng_package: nginx
2015-07-15 20:18:51 +07:00
#
# Nginx shared variables
#
2015-07-30 18:02:21 +07:00
nginx_root: "/srv/www"
2015-07-15 20:18:51 +07:00
nginx_log_dir: '/var/log/nginx'
2016-01-12 00:20:42 +07:00
nginx_resolver_hosts: ['8.8.8.8', '8.8.4.4']
nginx_resolver_valid: '300s'
nginx_resolver_timeout: '5s'
2021-09-01 16:21:12 +07:00
nginx_error_log_level: 'warn' # http://nginx.org/en/docs/ngx_core_module.html#error_log
2016-01-12 21:10:43 +07:00
nginx_auto_config_httpv2: true
nginx_default_site: null
nginx_default_site_ssl: null
nginx_fastcgi_fix_realpath: true
nginx_default_hsts: 'max-age=63072000; includeSubDomains'
2015-07-15 20:18:51 +07:00
2016-01-12 00:20:42 +07:00
#
# Nginx directories
#
2016-03-07 17:59:26 +07:00
nginx_htpasswd_dir: '{{ nginx_etc_dir }}/htpasswd'
nginx_ssl_dir: '{{ nginx_etc_dir }}/ssl'
2022-11-25 15:52:40 +07:00
nginx_helper_dir: '{{ nginx_etc_dir }}/helper'
2015-07-15 20:18:51 +07:00
#
# Load upstream
#
# PHP
nginx_php: []
2015-07-15 20:18:51 +07:00
#
# Nginx configuration
#
nginx_user: 'www-data'
nginx_worker_processes: '{{ ansible_processor_vcpus }}'
#
# Nginx events
#
nginx_events_worker_connections: '512'
nginx_events_multi_accept: 'on'
2015-07-15 20:18:51 +07:00
#
# Nginx HTTP
#
nginx_http_types_hash_max_size: 2048
nginx_http_default_type: 'application/octet-stream'
nginx_http_access_log: 'off'
nginx_http_error_log: 'off'
nginx_http_client_body_buffer_size: '1M'
nginx_http_client_header_buffer_size: '1M'
nginx_http_client_max_body_size: '10M'
nginx_http_large_client_header_buffers: '8 8k'
nginx_http_client_body_timeout: '60'
nginx_http_client_header_timeout: '60'
nginx_http_keepalive_timeout: '30 30'
nginx_http_send_timeout: '120'
nginx_http_ignore_invalid_headers: 'on'
nginx_http_keepalive_requests: '100'
nginx_http_recursive_error_pages: 'on'
nginx_http_sendfile: 'on'
nginx_http_server_name_in_redirect: 'off'
nginx_http_server_tokens: 'off'
nginx_http_tcp_nodelay: 'on'
nginx_http_tcp_nopush: 'on'
nginx_http_reset_timedout_connection: 'on'
nginx_http_gzip: 'on'
nginx_http_gzip_buffers: '16 8k'
nginx_http_gzip_comp_level: '9'
nginx_http_gzip_http_version: '1.0'
nginx_http_gzip_min_length: '0'
nginx_http_gzip_types: 'text/plain text/css application/json application/x-javascript application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml'
nginx_http_gzip_vary: 'on'
nginx_http_gzip_disable: '"msie6"'
2015-07-15 20:18:51 +07:00
2015-12-09 23:06:59 +07:00
#
2016-01-26 17:19:51 +07:00
# Custom global configuration
2015-12-09 23:06:59 +07:00
#
2016-01-26 17:19:51 +07:00
nginx_custom_http: []
2023-05-30 20:30:25 +07:00
nginx_custom_core: []
2015-12-09 23:06:59 +07:00
#
# Nginx default
#
nginx_default_listen:
- '80'
- '[::]:80'
nginx_default_listen_ssl:
- '443'
- '[::]:443'
nginx_default_listen_proxy_protocol: []
nginx_default_listen_proxy_protocol_ssl: []
2015-12-01 22:35:56 +07:00
#
# Sites
2015-12-01 22:35:56 +07:00
#
nginx_sites: []
#
# Upstreams
#
nginx_upstreams: []
#
# htpasswd
#
nginx_htpasswd: []
2016-01-12 00:20:42 +07:00
#
# SSL pairs
#
nginx_ssl_pairs: []
2016-01-12 17:16:41 +07:00
2016-10-12 23:13:59 +07:00
#
# Dynamic modules
#
2017-12-15 01:55:22 +07:00
nginx_module_packages: []
2018-03-17 03:56:15 +07:00
nginx_load_modules: []
2016-10-12 23:13:59 +07:00
2016-01-12 17:16:41 +07:00
#
2016-01-12 18:14:36 +07:00
# Diffie-Hellman
2016-01-12 17:16:41 +07:00
#
nginx_dh: null
nginx_dh_path: '{{ nginx_ssl_dir }}/dhparam.pem'
2019-12-31 18:46:02 +07:00
nginx_dh_length: 2048
2017-12-03 04:22:28 +07:00
#
# acme.sh
#
nginx_acmesh: false
nginx_acmesh_dir: "/opt/acme.sh"
nginx_acmesh_git_dir: "/tmp/acme.sh"
nginx_acmesh_test: false
2018-03-15 22:10:37 +07:00
#
# Debug
#
nginx_debug_role: false