mirror of
https://github.com/dev-sec/ansible-nginx-hardening.git
synced 2024-11-22 23:51:57 +01:00
438df53a71
Multiline {{ansible_managed}} strings do not get properly commented without the comment filter. See http://docs.ansible.com/ansible/playbooks_filters.html#comment-filter
18 lines
660 B
Django/Jinja
18 lines
660 B
Django/Jinja
# {{ansible_managed|comment}}
|
|
# Additional configuration for Nginx.
|
|
|
|
client_header_buffer_size {{nginx_client_header_buffer_size}};
|
|
large_client_header_buffers {{nginx_large_client_header_buffers}};
|
|
client_body_timeout {{nginx_client_body_timeout}};
|
|
client_header_timeout {{nginx_client_header_timeout}};
|
|
send_timeout {{nginx_send_timeout}};
|
|
limit_conn_zone {{nginx_limit_conn_zone}};
|
|
limit_conn {{nginx_limit_conn}};
|
|
ssl_protocols {{nginx_ssl_protocols}};
|
|
ssl_ciphers {{nginx_ssl_ciphers}};
|
|
ssl_dhparam {{nginx_dh_param}};
|
|
ssl_prefer_server_ciphers {{nginx_ssl_prefer_server_ciphers}};
|
|
{% for header in nginx_add_header %}
|
|
add_header {{header}};
|
|
{% endfor %}
|