我的专用根服务器上有一个脚本(类似于youtube),但是我无法上传大型视频文件。
我收到此错误消息:
413请求实体的nginx太大
程序员编写了一个php文件,该文件直接显示错误消息。
我已经调整了nginx.conf
,但是错误仍然存在。
#user nginx;
worker_processes 1;
#error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
#pid /var/run/nginx.pid;
include /etc/nginx/modules.conf.d/*.conf;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
client_max_body_size 4096M;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#tcp_nodelay on;
#gzip on;
#gzip_disable "MSIE [1-6]\.(?!.*SV1)";
server_tokens off;
include /etc/nginx/conf.d/*.conf;
server {
client_max_body_size 4096M;
location / {
client_max_body_size 4096M;
}
}
}
# override global parameters e.g. worker_rlimit_nofile
include /etc/nginx/*global_params;
这些数据在php.ini
中设置:
有人可以帮助我吗?我必须在哪里更改某些内容,以便上传大型视频文件。
谢谢!
答案 0 :(得分:0)
您拥有的东西很棒,将相同的client_max_body_size 4096M;
添加到您的nginx默认文件或您创建的任何文件中。
我说的这个文件位于站点可用目录中。
完成文件的编辑后,重新加载守护程序,然后重新启动nginx。
然后从以上内容中除去或注释掉位置栏中的那个。
让我知道这是否有帮助