Ajenti V网站自定义配置

时间:2015-05-21 07:40:18

标签: nginx

我遇到Ajenti V网站自定义配置问题

我需要为我的某个网站启用此指令:

client_max_body_size 8M;

如果我试着把这个

http {
   client_max_body_size 8M;
}

在自定义配置或自定义顶级配置中,但在此之后,nginx停止工作 如果我输入:

nginx -t

它显示了这个:

nginx: [emerg] "http" directive is not allowed here in /etc/nginx/conf.d/xxxxx.conf:18

我应该把这个指令放在哪里? 感谢

2 个答案:

答案 0 :(得分:0)

尝试放

  

client_max_body_size 8M;

没有“ http {”和“}

答案 1 :(得分:0)

在nginx.conf上有一行:

include /etc/nginx.custom.d/*.conf;

在http指令内,这意味着你可以使用

创建一个文件
nano(or vi, whatever) /etc/nginx.custom.d/myconf.conf

并将您的配置放在那里。