2015-05-28 11:32:57 +02:00
|
|
|
---
|
2016-01-27 15:22:45 +01:00
|
|
|
nginx_enabled: True
|
2016-07-03 12:19:12 +02:00
|
|
|
nginx_use_ppa: False
|
|
|
|
nginx_ppa_repo: ppa:nginx/stable
|
|
|
|
nginx_package_state: installed
|
2017-08-18 15:47:17 +02:00
|
|
|
# See https://mozilla.github.io/server-side-tls/ssl-config-generator/
|
|
|
|
nginx_ssl_level: intermediate
|
2016-07-03 12:19:12 +02:00
|
|
|
|
|
|
|
#nginx_virthosts: []
|
2015-06-05 17:12:36 +02:00
|
|
|
|
2016-09-27 19:33:52 +02:00
|
|
|
nginx_snippets_dir: /etc/nginx/snippets
|
|
|
|
|
|
|
|
nginx_conf_snippets:
|
|
|
|
- nginx-compression.conf
|
|
|
|
- nginx-websockets.conf
|
|
|
|
- nginx-browser-cache.conf
|
|
|
|
- letsencrypt-proxy.conf
|
|
|
|
- nginx-proxy-params.conf
|
2016-10-03 16:48:23 +02:00
|
|
|
- nginx-server-ssl.conf
|
2016-11-28 16:40:45 +01:00
|
|
|
- nginx-cors.conf
|
2016-09-27 19:33:52 +02:00
|
|
|
|
2016-10-03 18:27:39 +02:00
|
|
|
nginx_old_snippets:
|
|
|
|
- compression.conf
|
|
|
|
|
2016-09-27 19:33:52 +02:00
|
|
|
nginx_workers: 4
|
|
|
|
nginx_worker_connections: 1024
|
|
|
|
nginx_multi_accept: 'off'
|
|
|
|
nginx_worker_rlimit_nofile: 2048
|
|
|
|
nginx_server_tokens: 'off'
|
|
|
|
|
2016-11-18 11:08:14 +01:00
|
|
|
nginx_large_client_header_buffers: 4 8k
|
|
|
|
|
2015-08-05 19:14:03 +02:00
|
|
|
nginx_enable_compression: True
|
|
|
|
nginx_gzip_vary: "on"
|
|
|
|
nginx_gzip_proxied: any
|
|
|
|
nginx_gzip_comp_level: 6
|
|
|
|
nginx_gzip_buffers: 16 8k
|
|
|
|
nginx_gzip_http_version: 1.1
|
|
|
|
nginx_gzip_types: "text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript"
|
|
|
|
|
2016-09-27 19:33:52 +02:00
|
|
|
nginx_enable_browser_cache: True
|
|
|
|
nginx_cache_control: public
|
|
|
|
nginx_html_cache_expire: -1
|
|
|
|
nginx_feed_cache_expire_enabled: False
|
|
|
|
nginx_feed_cache_expire: 1h
|
2016-09-29 09:36:32 +02:00
|
|
|
nginx_media_cache_expire: 1M
|
2016-09-27 19:33:52 +02:00
|
|
|
nginx_css_js_cache_expire: -1
|
|
|
|
|
|
|
|
nginx_reverse_proxy: False
|
2017-03-16 11:37:10 +01:00
|
|
|
nginx_define_x_real_ip: False
|
2015-06-05 17:12:36 +02:00
|
|
|
nginx_proxy_buffering: "on"
|
|
|
|
nginx_proxy_redirect: "off"
|
|
|
|
nginx_proxy_buffer_size: 128k
|
2017-03-16 11:37:10 +01:00
|
|
|
nginx_proxy_buffers: '4 {{ nginx_proxy_buffer_size }}'
|
2015-06-05 17:12:36 +02:00
|
|
|
nginx_proxy_busy_buffers_size: 256k
|
|
|
|
nginx_proxy_connect_timeout: 30s
|
|
|
|
nginx_proxy_read_timeout: 480s
|
|
|
|
nginx_proxy_send_timeout: 120s
|
2017-03-16 11:37:10 +01:00
|
|
|
nginx_proxy_temp_file_write_size: '{{ nginx_proxy_buffer_size }}'
|
2016-11-29 09:41:44 +01:00
|
|
|
nginx_client_max_body_size: 100M
|
2016-06-21 19:23:18 +02:00
|
|
|
nginx_client_body_timeout: 240s
|
2015-06-05 17:12:36 +02:00
|
|
|
|
2017-08-16 18:15:27 +02:00
|
|
|
nginx_cors_limit_origin: True
|
2017-07-22 15:52:20 +02:00
|
|
|
nginx_cors_extended_rules: False
|
2016-11-28 16:40:45 +01:00
|
|
|
nginx_cors_acl_origin: 'http?://(localhost)'
|
|
|
|
|
2016-07-03 12:19:12 +02:00
|
|
|
# Find a set of acceptable defaults for the cache setup
|
|
|
|
nginx_cache_enabled: False
|
|
|
|
|
|
|
|
nginx_use_ldap_pam_auth: False
|
|
|
|
nginx_pam_svc_name: nginx
|
|
|
|
nginx_ldap_uri: "ldap://ldap.example.org"
|
|
|
|
nginx_ldap_base_dn: "dc=example,dc=org"
|
2017-02-01 17:12:54 +01:00
|
|
|
nginx_basic_auth: False
|
|
|
|
nginx_basic_auth_users:
|
|
|
|
- { name: 'test', pwd: 'hide inside a vault file', file: '/etc/nginx/htpasswd' }
|
2016-07-20 16:09:55 +02:00
|
|
|
# nginx_ldap_login_attribute: uid
|
|
|
|
# nginx_ldap_pam_groupdn:
|
2017-11-07 00:09:01 +01:00
|
|
|
nginx_webroot: /usr/share/nginx/html
|
2016-04-22 18:55:20 +02:00
|
|
|
nginx_letsencrypt_managed: True
|
2016-09-21 17:49:13 +02:00
|
|
|
nginx_websockets_support: False
|
2016-11-09 14:27:00 +01:00
|
|
|
nginx_use_common_virthost: False
|
2017-08-18 15:47:17 +02:00
|
|
|
# Set it to 'ssl http2' if the nginx version supports it
|
|
|
|
nginx_ssl_type: ssl
|
2017-07-03 14:59:38 +02:00
|
|
|
# When we do not use letsencrypt:
|
|
|
|
# nginx_ssl_cert_file: '{{ pki_dir }}/certs/nginx.crt'
|
|
|
|
# nginx_ssl_cert_key: '{{ pki_dir }}/keys/nginx.key'
|
2016-04-22 18:55:20 +02:00
|
|
|
|
2016-07-03 12:19:12 +02:00
|
|
|
# Virtualhost example
|
|
|
|
# nginx_virthosts:
|
|
|
|
# - virthost_name: '{{ ansible_fqdn }}'
|
|
|
|
# listen: '{{ http_port }}'
|
|
|
|
# server_name: '{{ ansible_fqdn }}'
|
|
|
|
# server_aliases: ''
|
|
|
|
# index: index.html
|
|
|
|
# error_page: /path_to_error_page.html
|
|
|
|
# ssl_enabled: False
|
|
|
|
# ssl_only: False
|
|
|
|
# ssl_letsencrypt_certs: '{{ nginx_letsencrypt_managed }}'
|
2017-11-07 00:09:01 +01:00
|
|
|
# root: {{ nginx_webroot }}
|
2016-07-03 12:19:12 +02:00
|
|
|
# server_tokens: 'off'
|
|
|
|
# proxy_standard_setup: True
|
|
|
|
# proxy_additional_options:
|
|
|
|
# - 'proxy_cache_path /tmp/nginx_cache levels=1:2 keys_zone=cache:30m max_size=250m;'
|
2018-01-10 17:45:21 +01:00
|
|
|
# locations:
|
2016-07-03 12:19:12 +02:00
|
|
|
# - location: /
|
2018-01-10 17:45:21 +01:00
|
|
|
# target: http://localhost:{{ local_http_port }}
|
2016-07-03 12:19:12 +02:00
|
|
|
#
|
|
|
|
# extra_parameters: |
|
|
|
|
# location ~ \.php$ {
|
|
|
|
# fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
|
|
# fastcgi_pass unix:/var/run/php5-fpm.sock;
|
|
|
|
# fastcgi_index index.php;
|
|
|
|
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
# include fastcgi_params;
|
|
|
|
# }
|
|
|
|
|