我正在构建一个部署到 AWS elastic beanstalk 的 Rails 5 应用程序。该应用程序遇到错误 413(请求实体太大)。我一直在 Google、Stackoverflow 和 Serverfault 上寻找。所有这些资源都指向我使用 client_max_body_size 来增加应用程序的上传容量。据说有两种方法可以做到这一点,都涉及使用 .ebextensions。第一种方法是编写一个简单的脚本:
files:
/etc/nginx/conf.d/proxy.conf:
content: |
client_max_body_size 2G;
第二个选项是覆盖 nginx.conf。我已经尝试了这两个选项,但仍然不断收到错误 413(请求实体太大)。我已经尝试了选项 1 的所有配置。对于这两个选项,我都手动重新加载了 nginx:
sudo service nginx reload
这是我最后一次尝试。我一直在使用选项 2 来覆盖 nginx.conf,因此这是我自己的 nginx.conf:
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
client_max_body_size 2G;
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;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
index index.html index.htm;
server {
client_max_body_size 2G;
listen 80 default_server;
listen [::]:80 default_server;
server_name localhost;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location /movies {
client_max_body_size 2G;
}
# redirect server error pages to the static page /40x.html
#
error_page 404 /404.html;
location = /40x.html {
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# Settings for a TLS enabled server.
#
# server {
# listen 443 ssl http2 default_server;
# listen [::]:443 ssl http2 default_server;
# server_name _;
# root /usr/share/nginx/html;
#
# ssl_certificate "/etc/pki/nginx/server.crt";
# ssl_certificate_key "/etc/pki/nginx/private/server.key";
# # It is *strongly* recommended to generate unique DH parameters
# # Generate them with: openssl dhparam -out /etc/pki/nginx/dhparams.pem 2048
# #ssl_dhparam "/etc/pki/nginx/dhparams.pem";
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 10m;
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
# ssl_ciphers HIGH:SEED:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!RSAPSK:!aDH:!aECDH:!EDH-DSS-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA:!SRP;
# ssl_prefer_server_ciphers on;
#
# # Load configuration files for the default server block.
# include /etc/nginx/default.d/*.conf;
#
# location / {
# }
#
# error_page 404 /404.html;
# location = /40x.html {
# }
#
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# }
# }
}
我需要一些帮助。任何帮助。我不知道下一步该怎么做。我试过的所有方法都不起作用。非常感谢您的帮助。
答案1
要禁用 client_max_body_size,您可以将值指令更改为 0。或者,如果您需要在一定程度上限制它,您可以添加类似client_max_body_size 26m;
。值中有“m”,表示使用兆字节,我认为这就是您遗漏的。如果没有“m”,则意味着限制主体大小为 26 字节,我怀疑您是否想要这样做。这是文档http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size。希望这有帮助。谢谢。
答案2
Elastic Beanstalk 现在原生支持设置 Nginx 配置:https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/java-se-nginx.html
要扩展 Elastic Beanstalk 的默认 nginx 配置,请将 .conf 配置文件添加到应用程序源包中名为 .ebextensions/nginx/conf.d/ 的文件夹中。Elastic Beanstalk 的 nginx 配置会自动包含此文件夹中的 .conf 文件。
为了特别增加最大上传大小,请创建一个文件,将.ebextensions/nginx/conf.d/proxy.conf
最大正文大小设置为您想要的大小:
client_max_body_size 50M;
我认为使用 ebextension 写入文件的方法files:
是可行的,但如果您在部署过程中通过 SSH 连接到机器,您会看到该文件是由您的配置创建的,然后在稍后的部署阶段被删除。
答案3
我尝试了所有 .ebextensions 方法来添加实现级别配置,但在最新的 Amazon Linux AMI 中,它对我不起作用。您需要遵循这结构来增加上传大小。您需要遵循此结构来增加上传大小限制。
在项目文件夹的根目录下添加以下文件夹设置。
文件夹结构(.platform/nginx/conf.d/proxy.conf)
.platform/
nginx/
conf.d/
proxy.conf
将此行添加到 proxy.conf (在 .platform/nginx/conf.d/ 文件夹中)
客户端最大主体大小50M;
提交此文件并使用 再次部署eb deploy
。