瀏覽代碼

Merge pull request #192 from morsik/patch-1

Allow to use load_module directly
master
Niels Abspoel 6 年之前
父節點
當前提交
a5624627dc
No account linked to committer's email address
共有 2 個文件被更改,包括 5 次插入0 次删除
  1. +4
    -0
      nginx/ng/files/nginx.conf
  2. +1
    -0
      pillar.example

+ 4
- 0
nginx/ng/files/nginx.conf 查看文件

@@ -32,6 +32,10 @@
#
# This file is managed by Salt.

{% if 'load_module' in config.keys() %}
{{ nginx_block(config.pop('load_module'), 'load_module') }}
{%- endif -%}

{% if 'include' in config.keys() %}
{{ nginx_block(config.pop('include'), 'include') }}
{%- endif -%}

+ 1
- 0
pillar.example 查看文件

@@ -85,6 +85,7 @@ nginx:
# options; if it is found other options (worker_processes: 4 and so
# on) are not processed and just upload the file from source
worker_processes: 4
load_module: modules/ngx_http_lua_module.so # this will be passed very first in configuration; otherwise nginx will fail to start
pid: /var/run/nginx.pid ### Directory location must exist
events:
worker_connections: 768

Loading…
取消
儲存