对不起,但是无论我如何尝试,总会有错误消息?
我不知道我的文件怎么了?
--- 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;
}
location / {
client_max_body_size 2024M;
}
http {
include mime.types;
default_type application/octet-stream;
client_max_body_size 2024M;
#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 2024M;
}
}
# override global parameters e.g. worker_rlimit_nofile
include /etc/nginx/*global_params;
谁可以帮助我,以便我了解我的错误所在?
我正在尝试“ client_max_body_size 2024M;”进行整合(html /服务器/位置)。
谢谢大家!