Add variable
This commit is contained in:
parent
6fbff41f0b
commit
0d87bf0d97
2 changed files with 3 additions and 0 deletions
|
@ -11,6 +11,7 @@ Role to install Nginx.
|
|||
| `nginx_package_name` | `nginx-full` | Name of the Debian package to install |
|
||||
| `nginx_bad_client_ip` | | List of IP address to deny access |
|
||||
| `nginx_type` | | `gateway` for a Reverse Proxy, `standalone` for a frontend webserver, `backend` for a backend webserver (behind a Reverse Proxy) |
|
||||
| `nginx_proxy_headers_hash_bucket_size` | `64` | |
|
||||
| `dhparam_path` | `/etc/ssl/private/dhparam.pem` | Path to dhparam file |
|
||||
| `dhparam_size` | `4096` | Size (in bits) of the generated DH-params |
|
||||
|
||||
|
|
|
@ -20,3 +20,5 @@ proxy_buffering off;
|
|||
proxy_connect_timeout 600;
|
||||
proxy_send_timeout 600;
|
||||
proxy_read_timeout 600;
|
||||
|
||||
proxy_headers_hash_bucket_size {{ nginx_proxy_header_hash_bucket_size | default(64) }};
|
||||
|
|
Loading…
Reference in a new issue