Adding the ability to define extra options:

Defining a new variable (defaults to empty) that allows users to define
extra configuration options in the top-level 'http' block.
This allows for (optionally) finer grain control.
pull/36/head
cmacrae 8 years ago
parent cc5114dc4f
commit c5a21436b4
  1. 10
      README.md
  2. 2
      defaults/main.yml
  3. 4
      templates/nginx.conf.j2

@ -77,6 +77,16 @@ This value determines the largest file upload possible, as uploads are passed th
Set as the `proxy_cache_path` directive in the `nginx.conf` file. By default, this will not be configured (if left as an empty string), but if you wish to use Nginx as a reverse proxy, you can set this to a valid value (e.g. `"/var/cache/nginx keys_zone=cache:32m"`) to use Nginx's cache (further proxy configuration can be done in individual server configurations).
nginx_extra_options: ""
Optionally define extra parameters and their values to be insterted in the top-level `http` block in `nginx.conf`. The value should be defined literally (as you would insert it directly in the `nginx.conf`, adhering to the Nginx configuration syntax - such as `;` for line termination, etc.), like so:
nginx_extra_options: |
proxy_buffering off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
nginx_default_release: ""
(For Debian/Ubuntu only) Allows you to set a different repository for the installation of Nginx. As an example, if you are running Debian's wheezy release, and want to get a newer version of Nginx, you can install the `wheezy-backports` repository and set that value here, and Ansible will use that as the `-t` option while installing Nginx.

@ -19,6 +19,8 @@ nginx_client_max_body_size: "64m"
nginx_proxy_cache_path: ""
nginx_extra_options: ""
nginx_remove_default_vhost: false
nginx_vhosts: []
# Example vhost below, showing all available options:

@ -36,6 +36,10 @@ http {
proxy_cache_path {{ nginx_proxy_cache_path }};
{% endif %}
{% if nginx_extra_options %}
{{ nginx_extra_options }}
{% endif %}
{% for upstream in nginx_upstreams %}
upstream {{ upstream.name }} {
{% if upstream.strategy is defined %}