mirror of
https://github.com/geerlingguy/ansible-role-nginx.git
synced 2024-11-16 10:35:33 +01:00
Merge pull request #50 from leventyalcin/master
multi_accept option added
This commit is contained in:
commit
a364055306
@ -7,6 +7,7 @@ nginx_package_name: "nginx"
|
||||
|
||||
nginx_worker_processes: "1"
|
||||
nginx_worker_connections: "1024"
|
||||
nginx_multi_accept: "off"
|
||||
|
||||
nginx_error_log: "/var/log/nginx/error.log warn"
|
||||
nginx_access_log: "/var/log/nginx/access.log main buffer=16k"
|
||||
|
@ -7,6 +7,7 @@ worker_processes {{ nginx_worker_processes }};
|
||||
|
||||
events {
|
||||
worker_connections {{ nginx_worker_connections }};
|
||||
multi_accept {{ nginx_multi_accept }};
|
||||
}
|
||||
|
||||
{% if nginx_extra_conf_options %}
|
||||
|
Loading…
Reference in New Issue
Block a user