我正在使用nginx 1.4.1。复制unicorn's example of nginx.conf
后,我发现必须将设置移动到不同的指令。我仍然无法将以下设置放在nginx.conf
文件中:worker_processes
,user
,pid
和events
阻止。当我按原样放置它们时,日志显示directive is not allowed here
。我该怎么办?
worker_processes 1;
user deployer sudo; # for systems with a "nogroup"
pid /run/nginx.pid;
events {
worker_connections 1024; # increase if you have lots of clients
accept_mutex off; # "on" if nginx worker_processes > 1
}
upstream qwuen {
...
}
server {
...
}
我知道这个post但是,无论我做什么都行不通,这很奇怪。我在nginx中找不到任何文档。
答案 0 :(得分:7)
原始示例无法直接使用,因为主要配置位于/etc/nginx/nginx.conf
。 /etc/nginx/nginx.conf
具有http
个指令,其中包含sites-enabled/*
指令。对/etc/nginx/nginx.conf
进行的唯一更改是:
work_processes 4;
worker_connections 1024;
此外,从中移除text/html
,因为默认情况下它已被gzip压缩。
您的应用中nginx.conf
的最终结果应该没有http
指令,只有upstream
和server
。