浏览代码

set 'daemon on;' by default

susefix
Kent Shultz 10 年前
父节点
当前提交
7f6b7841c3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      nginx/templates/config.jinja

+ 1
- 1
nginx/templates/config.jinja 查看文件

@@ -10,7 +10,7 @@ worker_rlimit_nofile {{ worker_rlimit_nofile }};

error_log /var/log/nginx/error.fifo warn;
pid {{ nginx.get('pid', '/var/run/nginx.pid') }};
daemon {{ nginx.get('daemon', 'off') }};
daemon {{ nginx.get('daemon', 'on') }};

events {
worker_connections {{ nginx.get('events', {}).get('worker_connections', 1024) }};

正在加载...
取消
保存