Ver código fonte

add support for events { use <epoll,etc>}

susefix
Kent Shultz 10 anos atrás
pai
commit
b4ae528df5
1 arquivos alterados com 4 adições e 0 exclusões
  1. +4
    -0
      nginx/templates/config.jinja

+ 4
- 0
nginx/templates/config.jinja Ver arquivo

@@ -14,6 +14,10 @@ daemon {{ nginx.get('daemon', 'off') }};

events {
worker_connections {{ nginx.get('events', {}).get('worker_connections', 1024) }};
{% set use = nginx.get('events', {}).get('use', '') %}
{% if use %}
use {{ use }};
{% endif %}}
}

http {

Carregando…
Cancelar
Salvar